finally make tagging clickable, add blank content folders i will fill out later
This commit is contained in:
parent
67d4b7e1ef
commit
0cb04d1205
11 changed files with 43 additions and 11 deletions
|
@ -7,4 +7,5 @@ nixfox.ca is the home for both my personal projects as well as 'foss' services i
|
|||
|
||||
if you'd like to suggest anything for my site, have any problems with the services, or would like to get in contact with me for any reason, check out my contact page!
|
||||
|
||||
this website is still under heavy construction, as I hope to introduce tagging and paging to my blog segment.
|
||||
forgive me if the content seems barren!
|
||||
this website is still under heavy construction, as i continue to add more content to each tag.
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
+++
|
||||
title = "the bunblogs"
|
||||
title = "the personal bunblogs"
|
||||
sort_by = "date"
|
||||
template = "blog.html"
|
||||
page_template = "blog-page.html"
|
||||
|
|
|
@ -6,7 +6,7 @@ date = 2025-06-26
|
|||
description = "a little rant about my own defense mechanisms"
|
||||
|
||||
[taxonomies]
|
||||
tags = [ "blog", "rants" ]
|
||||
tags = [ "rants" ]
|
||||
+++
|
||||
|
||||
i have spent a lot of years playing both active and preemptive emotional defense.
|
||||
|
|
6
content/hardware/_index.md
Normal file
6
content/hardware/_index.md
Normal file
|
@ -0,0 +1,6 @@
|
|||
+++
|
||||
title = "my hardware chicanery"
|
||||
sort_by = "date"
|
||||
template = "blog.html"
|
||||
page_template = "blog-page.html"
|
||||
+++
|
6
content/images/_index.md
Normal file
6
content/images/_index.md
Normal file
|
@ -0,0 +1,6 @@
|
|||
+++
|
||||
title = "silly little images"
|
||||
sort_by = "date"
|
||||
template = "blog.html"
|
||||
page_template = "blog-page.html"
|
||||
+++
|
6
content/software/_index.md
Normal file
6
content/software/_index.md
Normal file
|
@ -0,0 +1,6 @@
|
|||
+++
|
||||
title = "software and such"
|
||||
sort_by = "date"
|
||||
template = "blog.html"
|
||||
page_template = "blog-page.html"
|
||||
+++
|
|
@ -1,15 +1,15 @@
|
|||
// Setup stuff
|
||||
* {
|
||||
font-family: 'IBM Plex Mono', monospace;
|
||||
background-attachment: fixed;
|
||||
background-repeat: no-repeat;
|
||||
background-size: cover;
|
||||
top: 0;
|
||||
}
|
||||
|
||||
html {
|
||||
background-color: #DDE1E9;
|
||||
}
|
||||
|
||||
body {
|
||||
color: #141414;
|
||||
background-color: #DDE1E9;
|
||||
padding-bottom: 5em;
|
||||
}
|
||||
|
||||
|
|
|
@ -4,6 +4,11 @@
|
|||
<h1 class="title">
|
||||
{{ page.title }}
|
||||
</h1>
|
||||
<p class="subtitle"><strong>{{ page.date }} {{ page.taxonomies.tags }}</strong></p>
|
||||
<p class="subtitle"><strong>
|
||||
{{ page.date }},
|
||||
tags: {%- for tag in page.taxonomies.tags | sort | unique(case_sensitive=false) %}
|
||||
<a class="post-tag" href="{{ get_taxonomy_url(kind='tags', name=tag) | safe }}">#{{ tag }}</a>
|
||||
{% endfor -%}
|
||||
</strong></p>
|
||||
{{ page.content | safe }}
|
||||
{% endblock content %}
|
||||
|
|
|
@ -18,7 +18,9 @@
|
|||
<br>
|
||||
written: {{ page.date }}
|
||||
<br>
|
||||
tags: {{ page.taxonomies.tags }}
|
||||
tags: {%- for tag in page.taxonomies.tags | sort | unique(case_sensitive=false) %}
|
||||
<a class="post-tag" href="{{ get_taxonomy_url(kind='tags', name=tag) | safe }}">#{{ tag }}</a>
|
||||
{% endfor -%}
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
|
|
|
@ -7,6 +7,7 @@
|
|||
{% block content %}
|
||||
<div class="post">
|
||||
<h1 class="post-title">all tags</h1>
|
||||
<p class="larger">return to <a href="/blog">all blogs</a>.</p>
|
||||
|
||||
<ul>
|
||||
{% for term in terms %}
|
||||
|
|
|
@ -1,7 +1,10 @@
|
|||
{% extends "base.html" %}
|
||||
|
||||
{% block content %}
|
||||
<h1>{{ term.name }}</h1>
|
||||
<h2>
|
||||
tag: {{ term.name }}
|
||||
({{ term.pages | length }} post{{ term.pages | length | pluralize }})
|
||||
</h2>
|
||||
|
||||
<div class="page-intro">
|
||||
<p class="larger">view all <a href="/tags">tags</a>.</p>
|
||||
|
@ -16,7 +19,9 @@
|
|||
<br>
|
||||
written: {{ page.date }}
|
||||
<br>
|
||||
tags: {{ page.taxonomies.tags }}
|
||||
tags: {%- for tag in page.taxonomies.tags | sort | unique(case_sensitive=false) %}
|
||||
<a class="post-tag" href="{{ get_taxonomy_url(kind='tags', name=tag) | safe }}">#{{ tag }}</a>
|
||||
{% endfor -%}
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue