+++
-template = "section.html"
+template = "index.html"
title = "Hovedside"
page_title = "wiki"
description = ""
## Prosjekter
* [Oppskrifter](@/oppskrifter/_index.md)
-* [[HDR|HDR/index]]
-* [[Wireless_trigger|WirelessTrigger/index]]
-
-## Planeter
-
-* [[Planet/Beer]]
## Lister av ymse slag
-* [[Pakkeliste]]
-* [[Tollef/Kjøpeliste]]
-* [[Tollef/Webting]]
-* [[Tollef/Nettjenester]]
-* [[KravSpecHus]]
-* [[HusKostnad]]
-* [[Innflytting]]
-* [[HandlelisteHus]]
-* [[JulegaveListe]]
+* [Pakkeliste](@/pakkeliste.md)
+* [Tollef/Nettjenester](@/tollef/nettjenester.md)
+* [KravSpecHus](@/kravspechus.md)
+* [HusKostnad](@/huskostnad.md)
+* [Innflytting](@/innflytting.md)
+* [HandlelisteHus](@/handlelistehus.md)
+* [JulegaveListe](@/julegaveliste.md)
## Hus
+++ /dev/null
-# Ymse webting
-
- * [Hamburgerpresse][hamburger]
- * [iphone toolchain](http://www.google.no/search?q=linux+toolchain+iphone)
- * [systemtestrammeverk, crucible](http://crucible.sourceforge.net/docs/tutorial.php)
-
-# Strobist-stuff
-
- * [Strobist-stuff i Europa](http://lightingmods.blogspot.com/2007/11/strobist-gear-where-can-i-find-it-in_19.html)
- * [Strobist-stuff i Europa](http://lightingmods.blogspot.com/2007/11/strobist-gear-where-can-i-find-it-in.html)
-
- [hamburger]: http://www.trend-in.no/cc/index.php?act=viewProd&productId=251
--- /dev/null
+<!DOCTYPE html>
+<html lang="en">
+ <head>
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
+ <meta http-equiv="content-type" content="text/html; charset=utf-8">
+
+ <!-- Enable responsiveness on mobile devices-->
+ <!-- viewport-fit=cover is to support iPhone X rounded corners and notch in landscape-->
+ <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1, viewport-fit=cover">
+
+ <title>{% block title %}{{ config.title }}{% endblock title %}</title>
+
+ <!-- CSS -->
+ <link rel="stylesheet" href="{{ get_url(path="print.css", trailing_slash=false) }}" media="print">
+ <link rel="stylesheet" href="{{ get_url(path="poole.css", trailing_slash=false) }}">
+ <link rel="stylesheet" href="{{ get_url(path="hyde.css", trailing_slash=false) }}">
+ <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=PT+Sans:400,400italic,700|Abril+Fatface">
+
+ {% if config.generate_rss %}
+ <link rel="alternate" type="application/rss+xml" title="RSS" href="{{ get_url(path="rss.xml", trailing_slash=false) }}">
+ {% endif %}
+
+ {% block extra_head %}
+ {% endblock extra_head %}
+ </head>
+
+ <body class="{{ config.extra.hyde_theme }} {% if config.extra.hyde_reverse %}layout-reverse{% endif %}">
+ {% block sidebar %}
+ <div class="sidebar">
+ <div class="container {% if config.extra.hyde_sticky %}sidebar-sticky{% endif %}">
+ <div class="sidebar-about">
+ {% block sidebar_about %}
+ <a href="{{ config.base_url }}"><h1>{{ config.title }}</h1></a>
+ {% if config.description %}
+ <p class="lead">{{config.description}}</p>
+ {% endif %}
+ {% endblock sidebar_about %}
+ </div>
+
+ <ul class="sidebar-nav">
+ {% block sidebar_nav %}
+ {% for link in config.extra.hyde_links %}
+ <li class="sidebar-nav-item"><a href="{{link.url}}">{{link.name}}</a></li>
+ {% endfor %}
+ {% endblock sidebar_nav %}
+ </ul>
+ </div>
+ </div>
+ {% endblock sidebar %}
+
+ <div class="content container">
+ {% block content %}
+ <div class="post">
+ <h1 class="post-title">{{ section.title }}</h1>
+ {{ section.content | safe}}
+ {% if section.extra.links %}
+ <h2>Lenker</h2>
+ <ul>
+ {% for link in section.extra.links %}
+ <li><a href="{{link.url}}">{{link.name}}</a></li>
+ {% endfor %}
+ </ul>
+ {% endif %}
+ </div>
+ {% endblock content %}
+ </div>
+
+ </body>
+
+</html>
+
+