別ファイルにあるHTMLテキストをそのまま取り込む。
成果物
情報源
前回まで
ブログサイトをつくれるようになった。
構成
templates/
include/
head-link-css.html
- page.html
- index.html
index.html
とpage.html
が、include
する側。
head-link-css.html
がinclude
される側。上記2ファイルに共通している部分を書く。
head-link-css.html
<link rel="stylesheet" href="/css/mobile.css" type="text/css" media="screen and (max-width: 899px)"> <link rel="stylesheet" href="/css/pc.css" type="text/css" media="screen and (min-width: 900px)">
index.html
とpage.html
はどちらも同じCSSを使う。なので上記コードが共通している。
includeしてみる
{% include "include/head-link-css.html" %}
上記のようにとりこみたいファイルのパスを指定すればよい。
index.html
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>{{ config.title }}</title> {% include "include/head-link-css.html" %} </head> <body> <h1>{{ config.title }}</h1><p>{{ config.description | safe }}</p> <a href="/about">about</a> <footer>© 2021 {{ config.extra.author }}</footer> </body> </html>
page.html
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>{{ page.title }} | {{ config.title }}</title> {% include "include/head-link-css.html" %} </head> <body> <h1>{{ page.title }}</h1><p>{{ page.description | safe }}</p> {{ page.content | safe }} <footer>© 2021 {{ config.extra.author }}</footer> </body> </html>
所感
include
は簡単。これに引数を渡せるのがmacro
である。次回macro
をやってみる。
対象環境
- Raspbierry pi 4 Model B
- Raspberry Pi OS buster 10.0 2020-08-20 ※
- bash 5.0.3(1)-release
$ uname -a Linux raspberrypi 5.4.83-v7l+ #1379 SMP Mon Dec 14 13:11:54 GMT 2020 armv7l GNU/Linux