diff options
author | mounderfod <mounderfod@gmail.com> | 2023-07-13 14:11:20 +0100 |
---|---|---|
committer | mounderfod <mounderfod@gmail.com> | 2023-07-13 14:11:20 +0100 |
commit | b23c816a0df39adf6716b995e83c3dd019edae7d (patch) | |
tree | 7f91cd45df0593e09da08a7a07de27b960b432bf | |
parent | 45884d1574c78119c0179e62cd949bea146e660b (diff) | |
download | website-b23c816a0df39adf6716b995e83c3dd019edae7d.tar.gz |
Fancy stuffs
-rw-r--r-- | _layouts/default.html | 3 | ||||
-rw-r--r-- | _layouts/post.html | 2 | ||||
-rw-r--r-- | blog.html | 2 | ||||
-rw-r--r-- | index.html | 2 |
4 files changed, 5 insertions, 4 deletions
diff --git a/_layouts/default.html b/_layouts/default.html index b1ca51b..a8490fa 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -3,7 +3,8 @@ <head> <meta charset="utf-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> - <title>mounderfod</title> + <title>{{page.title}} - mounderfod</title> + <link rel="icon" type="image/png" href="/assets/img/planets/Planet-4.png"> <meta name="description" content="" /> <meta name="viewport" content="width=device-width, initial-scale=1" /> <link rel="stylesheet" href="/assets/index.css" /> diff --git a/_layouts/post.html b/_layouts/post.html index bc104c8..e6a54de 100644 --- a/_layouts/post.html +++ b/_layouts/post.html @@ -15,5 +15,5 @@ layout: default <path d="M2 1a1 1 0 0 0-1 1v4.586a1 1 0 0 0 .293.707l7 7a1 1 0 0 0 1.414 0l4.586-4.586a1 1 0 0 0 0-1.414l-7-7A1 1 0 0 0 6.586 1H2zm4 3.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0z" /> </svg> - <em style="color: gray;">{{page.tags | join ", "}}</em> + <em style="color: gray;">{{page.tags | join: ", "}}</em> </p> \ No newline at end of file diff --git a/blog.html b/blog.html index 1a9587f..d11a086 100644 --- a/blog.html +++ b/blog.html @@ -8,5 +8,5 @@ permalink: /blog/ {% for post in site.posts %} <h2><a href="{{ post.url }}">{{ post.title }}</a></h2> <p><em>{{post.date | date: "%-d %B %Y"}}</em></p> -<p>{{ post.excerpt }}</p> +<p>{{ post.excerpt | truncatewords: 20 }}</p> {% endfor %} diff --git a/index.html b/index.html index 18adff3..694b05c 100644 --- a/index.html +++ b/index.html @@ -3,10 +3,10 @@ <head> <meta charset="utf-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> - <title>mounderfod</title> <meta name="description" content="" /> <meta name="viewport" content="width=device-width, initial-scale=1" /> <link rel="stylesheet" href="assets/index.css" /> + <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.4/jquery.min.js"></script> <script src="timedate.js"></script> </head> |