diff options
Diffstat (limited to '')
| -rw-r--r-- | _layouts/default.html | 3 | ||||
| -rw-r--r-- | _layouts/page.html | 9 | ||||
| -rw-r--r-- | _layouts/post.html | 2 |
3 files changed, 12 insertions, 2 deletions
diff --git a/_layouts/default.html b/_layouts/default.html index 8fb910f..5f80b43 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -9,10 +9,9 @@ <div id="container"> {{ content }} + {% include footer.html %} </div> - {% include footer.html %} - </body> </html> diff --git a/_layouts/page.html b/_layouts/page.html new file mode 100644 index 0000000..b74fa96 --- /dev/null +++ b/_layouts/page.html @@ -0,0 +1,9 @@ +--- +layout: default +--- + +<div>fcuny: <a href="/">home</a></div> + +<section> + <div id="entry"> {{ content }} </div> +</section> diff --git a/_layouts/post.html b/_layouts/post.html index 1504149..4532662 100644 --- a/_layouts/post.html +++ b/_layouts/post.html @@ -2,6 +2,8 @@ layout: default --- +<div>fcuny: <a href="/">home</a></div> + <header> <h1><a href="{{ page.url }}">{{ page.title }}</a></h1> </header> |
