diff options
author | Valentin Popov <valentineus@gmail.com> | 2018-04-03 05:07:44 +0300 |
---|---|---|
committer | Valentin Popov <valentineus@gmail.com> | 2018-04-03 05:08:33 +0300 |
commit | 54e69909fcfe2153f45ebaf3c17c74f409da5623 (patch) | |
tree | 77de8ba3f7b72e27a62a253f28a99f9beb1847e6 /_layouts/page.html | |
parent | 84da41dffc9392ea38b975ae0d493c16f2ad4e80 (diff) | |
download | popov.link-54e69909fcfe2153f45ebaf3c17c74f409da5623.tar.xz popov.link-54e69909fcfe2153f45ebaf3c17c74f409da5623.zip |
Added page template
Signed-off-by: Valentin Popov <valentineus@gmail.com>
Diffstat (limited to '_layouts/page.html')
-rw-r--r-- | _layouts/page.html | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/_layouts/page.html b/_layouts/page.html new file mode 100644 index 0000000..1a0cca5 --- /dev/null +++ b/_layouts/page.html @@ -0,0 +1,9 @@ +--- +layout: default +--- + +<!-- Contents of the page --> +<div class="page"> + <h1 class="page-title">{{ page.title }}</h1> + {{ content }} +</div> |