Skip to content

Commit

Permalink
modify: トップおよび下層のインデックスページに「meta タイトル」と「main ブロック」向けのタグを追加
Browse files Browse the repository at this point in the history
  • Loading branch information
dreamseeker committed Dec 12, 2018
1 parent bed7966 commit a3175af
Show file tree
Hide file tree
Showing 5 changed files with 31 additions and 0 deletions.
7 changes: 7 additions & 0 deletions templates/about/index.html
Expand Up @@ -7,9 +7,16 @@
{# ------------------------------------------
変数など
--------------------------------------------- #}
{# meta タイトル #}
{% set metaTitle = '会社案内' %}


{# ------------------------------------------
出力
--------------------------------------------- #}
{# ベースレイアウトを extends #}
{% extends '_layout' %}

{# main ブロック #}
{% block main %}
{% endblock %}
4 changes: 4 additions & 0 deletions templates/index.html
Expand Up @@ -13,3 +13,7 @@
--------------------------------------------- #}
{# ベースレイアウトを extends #}
{% extends '_layout' %}

{# main ブロック #}
{% block main %}
{% endblock %}
7 changes: 7 additions & 0 deletions templates/news/index.html
Expand Up @@ -7,9 +7,16 @@
{# ------------------------------------------
変数など
--------------------------------------------- #}
{# meta タイトル #}
{% set metaTitle = 'ニュース' %}


{# ------------------------------------------
出力
--------------------------------------------- #}
{# ベースレイアウトを extends #}
{% extends '_layout' %}

{# main ブロック #}
{% block main %}
{% endblock %}
7 changes: 7 additions & 0 deletions templates/services/index.html
Expand Up @@ -7,9 +7,16 @@
{# ------------------------------------------
変数など
--------------------------------------------- #}
{# meta タイトル #}
{% set metaTitle = 'サービス' %}


{# ------------------------------------------
出力
--------------------------------------------- #}
{# ベースレイアウトを extends #}
{% extends '_layout' %}

{# main ブロック #}
{% block main %}
{% endblock %}
6 changes: 6 additions & 0 deletions templates/work/index.html
Expand Up @@ -7,10 +7,16 @@
{# ------------------------------------------
変数など
--------------------------------------------- #}
{# meta タイトル #}
{% set metaTitle = 'ワークス' %}


{# ------------------------------------------
出力
--------------------------------------------- #}
{# ベースレイアウトを extends #}
{% extends '_layout' %}

{# main ブロック #}
{% block main %}
{% endblock %}

0 comments on commit a3175af

Please sign in to comment.