diff options
author | Adam Carpenter <53hornet@gmail.com> | 2019-04-28 16:28:09 -0400 |
---|---|---|
committer | Adam Carpenter <53hornet@gmail.com> | 2019-04-28 16:28:09 -0400 |
commit | b293b709cba60ee827697928595e1b65ce96f1e3 (patch) | |
tree | ae974a4feb5a0270a203db61b5f8706916616cb1 /_layouts | |
parent | 52fcddce80acc1ef1986f4509444fb63233cd5b0 (diff) | |
download | cobalt-site-b293b709cba60ee827697928595e1b65ce96f1e3.tar.xz cobalt-site-b293b709cba60ee827697928595e1b65ce96f1e3.zip |
Added permalink mapping for pages (pretty URLs), cleaned up heads,
images.
Diffstat (limited to '_layouts')
-rw-r--r-- | _layouts/index.liquid | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/_layouts/index.liquid b/_layouts/index.liquid index 753a464..1bea078 100644 --- a/_layouts/index.liquid +++ b/_layouts/index.liquid @@ -2,6 +2,7 @@ <html> <head> {% include "head.liquid" %} + <link rel="stylesheet" href="/public/css/animate.css"> </head> <body> @@ -26,11 +27,11 @@ <!-- begin content --> <div class="column"> - <h1 class="title animated fadeInLeft"> + <h1 class="title"> {{ page.title }} </h1> - <div class="content animated fadeInLeft"> + <div class="content"> {{ page.content }} </div> </div> @@ -38,8 +39,10 @@ </div> <div class="column"> - <div class="box animated delay-1s fadeInRight"> - <img src="https://nextcloud.53hor.net/s/SNe4eGWiwgszJCW/preview"> + <div class="box animated"> + <figure class="image"> + <img src="https://nextcloud.53hor.net/s/SNe4eGWiwgszJCW/preview"> + </figure> </div> </div> </div> |