From 36e692be32196a1814988efb1b942fa7bc8159cb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=AD=C3=B0ir=20Valberg=20Gu=C3=B0mundsson?= Date: Fri, 19 May 2023 17:15:52 +0200 Subject: [PATCH] Upd. --- content/pages/about.md | 5 +++++ content/pages/projects.md | 25 +++++++++++++++++++++++++ theme/templates/base.html | 20 +++++++++++++++++--- theme/templates/index.html | 3 +-- 4 files changed, 48 insertions(+), 5 deletions(-) create mode 100644 content/pages/about.md create mode 100644 content/pages/projects.md diff --git a/content/pages/about.md b/content/pages/about.md new file mode 100644 index 0000000..809f728 --- /dev/null +++ b/content/pages/about.md @@ -0,0 +1,5 @@ +Title: About +Status: hidden +--- + + diff --git a/content/pages/projects.md b/content/pages/projects.md new file mode 100644 index 0000000..e7426d7 --- /dev/null +++ b/content/pages/projects.md @@ -0,0 +1,25 @@ +Title: Projects +Status: published +--- + +This is a list of the projects which I'm directly involved in. + + +## Code projects + +[django-view-decorator](https://github.com/valberg/django-view-decorator) +: django-view-decorator is decorator aimed at bringing locality of behaviour to the connection between a URL and a view in Django. + + +## Organisations + +[data.coop](https://data.coop) +: an organisation in Denmark with the aim to provide self-hosted services to its members. + + +[Django Denmark](https://django-denmark.org) +: an organisation with the purpose of arranging events about the Django web framework. + +[BornHack](https://bornhack.dk) +: a annual "hacker camp" held on the island of Funen in Denmark + diff --git a/theme/templates/base.html b/theme/templates/base.html index dc2816e..31bbad0 100644 --- a/theme/templates/base.html +++ b/theme/templates/base.html @@ -73,19 +73,33 @@
-

- +

+ valberg.dk

+

+
+
+ {% if DISPLAY_PAGES_ON_MENU %} + {% for p in pages %} + + {{ p.title }} + + {% endfor %} + {% endif %} +
+
+ +
+ {% block jumbotron %} {% endblock %}
-
{% block content %} diff --git a/theme/templates/index.html b/theme/templates/index.html index 3ce707f..6c45bce 100644 --- a/theme/templates/index.html +++ b/theme/templates/index.html @@ -1,7 +1,7 @@ {% extends "base.html" %} {% block jumbotron %} -
+

Hi!

I'm Víðir Valberg Guðmundsson. I'm a software developer and this is my blog. @@ -11,7 +11,6 @@ {% block content %} -

{% for article in articles_page.object_list %}