summaryrefslogtreecommitdiff
path: root/_layouts
diff options
context:
space:
mode:
author53hornet <53hornet@gmail.com>2019-04-28 12:55:42 -0400
committer53hornet <53hornet@gmail.com>2019-04-28 12:55:42 -0400
commit8ca0649687f4e6a352e081e992c80c90098e9074 (patch)
tree63f703c8d8ea6d8c1ac788c4057a18f4ba6d443c /_layouts
parente93119e2bb55291faff35c3eccc48c42f66d3789 (diff)
downloadcobalt-site-8ca0649687f4e6a352e081e992c80c90098e9074.tar.xz
cobalt-site-8ca0649687f4e6a352e081e992c80c90098e9074.zip
Moved svg icons and head metadata to includes.
Diffstat (limited to '_layouts')
-rw-r--r--_layouts/index.liquid12
-rw-r--r--_layouts/page.liquid13
-rw-r--r--_layouts/post.liquid9
3 files changed, 16 insertions, 18 deletions
diff --git a/_layouts/index.liquid b/_layouts/index.liquid
index 6b53922..753a464 100644
--- a/_layouts/index.liquid
+++ b/_layouts/index.liquid
@@ -1,11 +1,7 @@
<!DOCTYPE html>
<html>
<head>
- <meta charset="utf-8">
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <title>{{ page.title }}</title>
- <link rel="stylesheet" href="/bulma.css">
- <link rel="stylesheet" href="/animate.css">
+ {% include "head.liquid" %}
</head>
<body>
@@ -43,7 +39,7 @@
</div>
<div class="column">
<div class="box animated delay-1s fadeInRight">
- <img src="https://nextcloud.53hor.net/s/WA4MokYXXGJHf6n/preview">
+ <img src="https://nextcloud.53hor.net/s/SNe4eGWiwgszJCW/preview">
</div>
</div>
</div>
@@ -55,7 +51,9 @@
</section>
<!-- end hero -->
- {% include "footer.liquid" %}
+ <footer class="footer">
+ {% include "footer.liquid" %}
+ </footer>
</body>
</html>
diff --git a/_layouts/page.liquid b/_layouts/page.liquid
index b97dc7e..101ebc2 100644
--- a/_layouts/page.liquid
+++ b/_layouts/page.liquid
@@ -1,10 +1,7 @@
<!DOCTYPE html>
<html>
<head>
- <meta charset="utf-8">
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <title>{{ page.title }}</title>
- <link rel="stylesheet" href="/bulma.css">
+ {% include "head.liquid" %}
</head>
<body>
@@ -42,7 +39,9 @@
</div>
<div class="column is-narrow">
- {% include "toc.liquid" %}
+ <aside>
+ {% include "toc.liquid" %}
+ </aside>
</div>
</div>
@@ -50,7 +49,9 @@
</section>
<!-- end main content -->
- {% include "footer.liquid" %}
+ <footer class="footer">
+ {% include "footer.liquid" %}
+ </footer>
</body>
</html>
diff --git a/_layouts/post.liquid b/_layouts/post.liquid
index 54bf211..382f17d 100644
--- a/_layouts/post.liquid
+++ b/_layouts/post.liquid
@@ -1,10 +1,7 @@
<!DOCTYPE html>
<html>
<head>
- <meta charset="utf-8">
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <title>{{ page.title }}</title>
- <link rel="stylesheet" href="/bulma.css">
+ {% include "head.liquid" %}
</head>
<body>
@@ -67,7 +64,9 @@
</section>
<!-- end main content -->
- {% include "footer.liquid" %}
+ <footer class="footer">
+ {% include "footer.liquid" %}
+ </footer>
</body>
</html>