From cde99375978e410ff8dfc35bca73db52ae078c3c Mon Sep 17 00:00:00 2001 From: Toru Kokubun Date: Fri, 14 Dec 2018 10:24:43 +0900 Subject: [PATCH] =?UTF-8?q?modify:=20=E3=80=8C=E5=9B=BA=E5=AE=9A=E8=A1=A8?= =?UTF-8?q?=E7=A4=BA=E3=83=95=E3=83=A9=E3=82=B0=E3=80=8D=E3=81=8C=20ON=20?= =?UTF-8?q?=E3=81=AE=E6=9C=80=E6=96=B0=E3=82=A8=E3=83=B3=E3=83=88=E3=83=AA?= =?UTF-8?q?=E3=81=AE=E5=87=BA=E5=8A=9B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- templates/news/index.html | 50 ++++++++++++++++++++++++++------------- 1 file changed, 33 insertions(+), 17 deletions(-) diff --git a/templates/news/index.html b/templates/news/index.html index bcfb2fd..1693e97 100644 --- a/templates/news/index.html +++ b/templates/news/index.html @@ -10,6 +10,13 @@ {# meta タイトル #} {% set metaTitle = 'ニュース' %} +{# 「固定表示フラグ」が ON の最新エントリを取得 #} +{% set featuredEntry = craft.entries({ + section: 'news', + featuredEntry: 1, + orderBy: 'postDate desc' +}).one() %} + {# ------------------------------------------ 出力 @@ -27,23 +34,32 @@

Brew News

-
-
- - water-barley-hops - -
-
-

Barrel Aged Digital Natives

- admin -

- Nam libero tempore, cum soluta nobis est eligendi optio cumque nihil impedit quo minus id quod maxime placeat facere possimus, omnis voluptas assumenda est, omnis dolor repellendus. Temporibus autem quibusdam et aut officiis debitis. -

-

- Read More -

-
-
+ + {# 「固定表示フラグ」が ON の最新エントリ #} + {% if featuredEntry %} + {# 「メイン画像」を取得 #} + {% set image = featuredEntry.featuredImage.one() %} + +
+ {# 「メイン画像」がセットされていれば、出力 #} + {% if image %} +
+ + {{ image.title }} + +
+ {% endif %} +
+

{{ featuredEntry.title }}

+ {{ featuredEntry.author.name }} + {{ featuredEntry.shortDescription }} +

+ Read More +

+
+
+ {% endif %} +