summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNikolas <nikolas@boutalas.com>2024-10-29 14:36:47 +0200
committerNikolas <nikolas@boutalas.com>2024-10-29 14:36:47 +0200
commitb876019d63c5aa940add10d1bb853c9a6dac66bd (patch)
tree857480682c55cc05ca13f9d0efaa6c088f52f9d7
parent7bc19d04271f7b073580f4eb04fba6e672869542 (diff)
index: rephrase
-rw-r--r--content/notes/_index.md6
-rw-r--r--content/photos/_index.md2
-rw-r--r--templates/index.html5
3 files changed, 4 insertions, 9 deletions
diff --git a/content/notes/_index.md b/content/notes/_index.md
index e9428fc..dc17d07 100644
--- a/content/notes/_index.md
+++ b/content/notes/_index.md
@@ -5,8 +5,4 @@ page_template = "notes-page.html"
render=false
+++
-These are my "living" notes. They can hold opinions, things to remember, ideas to express, and more.
-
-Opinions and perspectives evolve, so you should expect that the content of the notes might change as well to reflect that.
-
-They could be about anything but will most probably relate to software.
+Software (probably) related thoughts. Will try to keep them updated...
diff --git a/content/photos/_index.md b/content/photos/_index.md
index 6e5f617..2c829e9 100644
--- a/content/photos/_index.md
+++ b/content/photos/_index.md
@@ -6,4 +6,4 @@ page_template = "photos-page.html"
paginate_by = 2
+++
-I recently decided to dive into the exciting world of photography and picked up a used camera. If I like any of the photos I take, I will consider uploading them here.
+Poor man's social media account (without the social lol).
diff --git a/templates/index.html b/templates/index.html
index c9d0cea..a740ef7 100644
--- a/templates/index.html
+++ b/templates/index.html
@@ -1,6 +1,5 @@
{% extends "base.html" %} {% block body %}
<h1>Archive</h1>
-<p>Opinions are (hopefully) my own.</p>
{% set notes_section = get_section(path="notes/_index.md") %}
<h2>{{notes_section.title}}</h2>
@@ -14,7 +13,7 @@
{% set photos_section = get_section(path="photos/_index.md") %}
<h2>{{photos_section.title}}</h2>
{{ photos_section.content | safe}}
-<a href="{{ photos_section.permalink | safe }}">Check them out</a>
+<a href="{{ photos_section.permalink | safe }}">Check it out</a>
<h2>Links</h2>
<ul>
@@ -23,6 +22,6 @@
</ul>
<footer>
<hr />
- <p class="center"><small>Feedback, thoughts or patches? <a href="mailto:nikolas@boutalas.com">Send me an email</a></small></p>
+ <p class="center"><small>Feedback or patch? <a href="mailto:nikolas@boutalas.com">Don't send me an email</a></small></p>
</footer>
{% endblock body %}