diff --git a/_includes/archive-single.html b/_includes/archive-single.html new file mode 100644 index 0000000..f570035 --- /dev/null +++ b/_includes/archive-single.html @@ -0,0 +1,35 @@ +{% if post.header.teaser %} + {% capture teaser %}{{ post.header.teaser }}{% endcapture %} +{% else %} + {% assign teaser = site.teaser %} +{% endif %} + +{% if post.id %} + {% assign title = post.title | markdownify | remove: "

" | remove: "

" %} +{% else %} + {% assign title = post.title %} +{% endif %} + +
+
+ {% if include.type == "grid" and teaser %} +
+ +
+ {% endif %} +

+ {% if post.link %} + {{ title }} Permalink + {% else %} + {{ title }} + {% endif %} +

+ {% include page__meta.html type=include.type %} + {% if include.type == "list" and teaser %} +
+ +
+ {% endif %} + {% if post.excerpt %}

{{ post.excerpt | markdownify | strip_html | truncate: 160 }}

{% endif %} +
+
diff --git a/_includes/head/custom.html b/_includes/head/custom.html new file mode 100644 index 0000000..6770e4d --- /dev/null +++ b/_includes/head/custom.html @@ -0,0 +1 @@ + diff --git a/_posts/2023-07-03-moving-to-jekyll.md b/_posts/2023-07-03-moving-to-jekyll.md index 9ee0184..2742e08 100644 --- a/_posts/2023-07-03-moving-to-jekyll.md +++ b/_posts/2023-07-03-moving-to-jekyll.md @@ -3,6 +3,8 @@ title: "Moving to Jekyll" date: 2023-07-03 categories: other excerpt: After several years on WordPress, I realized my use case would be better suited for a static generator like Jekyll. To better maintainability and security! +header: + teaser: /assets/img/jekyll_logo.png --- Nothing much to see here. If the process gets rocky, I'll add some comments. diff --git a/assets/img/favicon.png b/assets/img/favicon.png new file mode 100755 index 0000000..6dc4681 Binary files /dev/null and b/assets/img/favicon.png differ diff --git a/assets/img/jekyll_logo.png b/assets/img/jekyll_logo.png new file mode 100644 index 0000000..57af994 Binary files /dev/null and b/assets/img/jekyll_logo.png differ