Upd.
This commit is contained in:
parent
4341a02203
commit
36e692be32
5
content/pages/about.md
Normal file
5
content/pages/about.md
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
Title: About
|
||||||
|
Status: hidden
|
||||||
|
---
|
||||||
|
|
||||||
|
|
25
content/pages/projects.md
Normal file
25
content/pages/projects.md
Normal file
|
@ -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
|
||||||
|
|
|
@ -73,19 +73,33 @@
|
||||||
<body id="index" class="home">
|
<body id="index" class="home">
|
||||||
|
|
||||||
<header class="container d-flex justify-content-center">
|
<header class="container d-flex justify-content-center">
|
||||||
<h1>
|
<h1 class="display-3">
|
||||||
<a href="{{ SITEURL }}/">
|
<a href="{{ SITEURL }}/" class="text-decoration-none">
|
||||||
valberg.dk
|
valberg.dk
|
||||||
</a>
|
</a>
|
||||||
</h1>
|
</h1>
|
||||||
|
|
||||||
</header><!-- /#banner -->
|
</header><!-- /#banner -->
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-8 offset-2 d-flex justify-content-center">
|
||||||
|
{% if DISPLAY_PAGES_ON_MENU %}
|
||||||
|
{% for p in pages %}
|
||||||
|
<a href="{{ SITEURL }}/{{ p.url }}" {% if not loop.last %}class="me-2"{% endif %}>
|
||||||
|
{{ p.title }}
|
||||||
|
</a>
|
||||||
|
{% endfor %}
|
||||||
|
{% endif %}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<hr>
|
||||||
|
|
||||||
|
|
||||||
{% block jumbotron %}
|
{% block jumbotron %}
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
<div class="container h-100">
|
<div class="container h-100">
|
||||||
|
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-8 offset-2 pt-5 p-3">
|
<div class="col-8 offset-2 pt-5 p-3">
|
||||||
{% block content %}
|
{% block content %}
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{% extends "base.html" %}
|
{% extends "base.html" %}
|
||||||
|
|
||||||
{% block jumbotron %}
|
{% block jumbotron %}
|
||||||
<div class="container p-5 text-center bg-body rounded-3 mb-5">
|
<div class="container p-5 text-center bg-body-tertiary rounded-3 mb-5">
|
||||||
<h1 class="text-body-emphasis">Hi!</h1>
|
<h1 class="text-body-emphasis">Hi!</h1>
|
||||||
<p class="lead">
|
<p class="lead">
|
||||||
I'm Víðir Valberg Guðmundsson. I'm a software developer and this is my blog.
|
I'm Víðir Valberg Guðmundsson. I'm a software developer and this is my blog.
|
||||||
|
@ -11,7 +11,6 @@
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
|
|
||||||
|
|
||||||
<section id="content">
|
<section id="content">
|
||||||
{% for article in articles_page.object_list %}
|
{% for article in articles_page.object_list %}
|
||||||
<article class="hentry">
|
<article class="hentry">
|
||||||
|
|
Loading…
Reference in a new issue