Changes or whatever
This commit is contained in:
parent
aaf2c39d16
commit
7fafd5b927
9 changed files with 42 additions and 19 deletions
12
config.toml
12
config.toml
|
@ -1,16 +1,12 @@
|
|||
# The URL the site will be built for
|
||||
base_url = "https://www.nixfox.ca"
|
||||
|
||||
# Whether to automatically compile all Sass files in the sass directory
|
||||
compile_sass = true
|
||||
|
||||
# Whether to build a search index to be used later on by a JavaScript library
|
||||
build_search_index = true
|
||||
|
||||
taxonomies = [
|
||||
{ name = "tags", feed = true},
|
||||
]
|
||||
|
||||
[markdown]
|
||||
# Whether to do syntax highlighting
|
||||
# Theme can be customised by setting the `highlight_theme` variable to a theme supported by Zola
|
||||
highlight_code = true
|
||||
|
||||
[extra]
|
||||
# Put all your custom variables here
|
||||
|
|
|
@ -1,6 +1,9 @@
|
|||
+++
|
||||
title = "Defense / Priorities"
|
||||
date = 2025-06-26
|
||||
|
||||
[taxonomies]
|
||||
tags = [ "rants" ]
|
||||
+++
|
||||
|
||||
I have spent a lot of years playing both active and preemptive emotional defense.
|
||||
|
|
|
@ -1 +1 @@
|
|||
#sidebar{width:8em;height:100%;top:0;left:0;overflow:auto;overflow-x:hidden;position:fixed;z-index:1;margin:0;padding:0;font-size:1.6em;background-color:#101419}.sb_header{font-size:25px;margin-left:15px}.sb_link{margin:.5em;padding:.5em;color:#fff;font-size:16px;text-decoration:none;transition:.3s}.sb_link:hover{color:#7ccbd5;font-size:17px;text-decoration:none}.sb_img{display:block;margin-left:auto;margin-right:auto;margin-top:10px;max-width:calc(100% - 1.2em)}.sb_img img{display:block;margin-left:auto;margin-right:auto;max-width:calc(100% - 2em)}.personal{color:#fc3f5b}.nixfox{color:#2abafc}.pers:hover{color:#fca9c0}.fox:hover{color:#a9c0fc}
|
||||
#sidebar{width:8em;height:100%;top:0;left:0;overflow:auto;overflow-x:hidden;position:fixed;z-index:1;margin:0;padding:0;font-size:1.6em;background-color:#101419}.sb_header{font-size:25px;margin-left:15px}.sb_link{margin:.5em;padding:.5em;color:#fff;font-size:16px;text-decoration:none}.sb_link:hover{color:#7ccbd5;font-size:17px;text-decoration:none}.sb_img{display:block;margin-left:auto;margin-right:auto;margin-top:10px;margin-bottom:10px;max-width:calc(100% - 1.2em)}.sb_img img{display:block;margin-left:auto;margin-right:auto;max-width:calc(100% - 2em)}.personal{color:#fc3f5b}.nixfox{color:#2abafc}.pers:hover{color:#fca9c0}.fox:hover{color:#a9c0fc}
|
|
@ -1 +1 @@
|
|||
*{font-family:"IBM Plex Mono",monospace;background-attachment:fixed;background-repeat:no-repeat;background-size:cover;top:0}body{color:#141414;background-color:#dde1e9}a{cursor:crosshair;outline:1px solid rgba(0,0,0,0);margin:0}a:hover{outline:2px solid}#main{position:relative;width:60%;max-width:50em;margin:auto;top:3em;left:6.5em;background-color:#eff1f5}li{list-style-type:none;width:100%}.container{padding:20px}
|
||||
*{font-family:"IBM Plex Mono",monospace;background-attachment:fixed;background-repeat:no-repeat;background-size:cover;top:0}body{color:#141414;background-color:#dde1e9;padding-bottom:5em}a{color:#b7162e;cursor:crosshair;outline:1px solid rgba(0,0,0,0);margin:0;text-decoration:none}a:hover{font-weight:bold;outline:3px solid;transition:.3s}h1{font-weight:bold}#main{position:relative;width:60%;max-width:50em;margin:auto;top:3em;left:6.5em;padding-top:1em;padding-bottom:1em;padding-left:3em;padding-right:3em;background-color:#eff1f5}li{list-style-type:square}.container{padding:20px}
|
|
@ -28,7 +28,6 @@
|
|||
color:#ffffff;
|
||||
font-size:16px;
|
||||
text-decoration: none;
|
||||
transition: 0.3s;
|
||||
}
|
||||
|
||||
.sb_link:hover {
|
||||
|
@ -42,6 +41,7 @@
|
|||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
margin-top: 10px;
|
||||
margin-bottom: 10px;
|
||||
max-width: calc(100% - 1.2em);
|
||||
}
|
||||
|
||||
|
|
|
@ -10,16 +10,25 @@
|
|||
body {
|
||||
color: #141414;
|
||||
background-color: #DDE1E9;
|
||||
padding-bottom: 5em;
|
||||
}
|
||||
|
||||
a {
|
||||
color:#b7162e;
|
||||
cursor: crosshair;
|
||||
outline: 1px solid transparent;
|
||||
margin: 0;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
outline: 2px solid;
|
||||
font-weight: bold;
|
||||
outline: 3px solid;
|
||||
transition: 0.3s;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
#main {
|
||||
|
@ -27,15 +36,20 @@ a:hover {
|
|||
width:60%;
|
||||
max-width:50em;
|
||||
margin: auto;
|
||||
|
||||
top: 3em;
|
||||
left: 6.5em;
|
||||
|
||||
padding-top: 1em;
|
||||
padding-bottom: 1em;
|
||||
padding-left: 3em;
|
||||
padding-right: 3em;
|
||||
|
||||
background-color: #EFF1F5;
|
||||
}
|
||||
|
||||
li {
|
||||
list-style-type: none;
|
||||
width: 100%;
|
||||
list-style-type: square;
|
||||
}
|
||||
|
||||
.container {
|
||||
|
|
|
@ -29,10 +29,12 @@
|
|||
<a href="https://files.nixfox.ca" class="sb_link fox">☁️ nextcloud</a><br>
|
||||
<a href="https://pass.nixfox.ca" class="sb_link fox">🔒 vaultwarden</a><br>
|
||||
<a href="https://git.nixfox.ca" class="sb_link fox">🗄️ forgejo</a><br>
|
||||
<a href="https://hedgedoc.nixfox.ca" class="sb_link fox">🗒️ hedgedoc</a><br>
|
||||
<a href="https://live.nixfox.ca" class="sb_link fox">📹 owncast</a><br>
|
||||
<a href="https://radio.nixfox.ca" class="sb_link fox">📻 icecast</a><br>
|
||||
<a href="https://chat.nixfox.ca" class="sb_link fox">💬 matrix</a><br>
|
||||
<a href="https://tor.nixfox.ca" class="sb_link fox">🗃️ transmission</a><br>
|
||||
<a href="https://git.nixfox.ca/Bun/nixfox-reborn.git" class="sb_link fox">💽 page code</a><br>
|
||||
</div>
|
||||
|
||||
<div id="main" class="column">
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
<!-- If you are using pagination, section.pages will be empty.
|
||||
You need to use the paginator object -->
|
||||
{% for page in section.pages %}
|
||||
<li><a href="{{ page.permalink | safe }}">{{ page.title }}</a></li>
|
||||
<li><a href="{{ page.permalink | safe }}">{{ page.title }}</a> {{ page.date }}</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
{% endblock content %}
|
||||
|
|
8
templates/tags/list.html
Normal file
8
templates/tags/list.html
Normal file
|
@ -0,0 +1,8 @@
|
|||
{% extends "base.html" %}
|
||||
|
||||
{% block content %}
|
||||
<h1 class="title">
|
||||
{{ section.title }}
|
||||
</h1>
|
||||
{{ section.content | safe }}
|
||||
{% endblock content %}
|
Loading…
Add table
Add a link
Reference in a new issue