1
0
Fork 0
mirror of https://github.com/Kozea/Radicale.git synced 2025-09-15 20:36:55 +00:00

First commit

This commit is contained in:
Guillaume Ayoub 2016-02-08 18:48:16 +01:00
commit 1ee43a0c3b
47 changed files with 1328 additions and 0 deletions

29
_layouts/default.html Normal file
View file

@ -0,0 +1,29 @@
<!doctype html>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link href="/css/main.css" media="screen" rel="stylesheet">
<link href="/feed.xml" type="application/rss+xml" rel="alternate" title="RSS feed" />
<title>{% if page.title %}{{ page.title }} - {% endif %}{{ site.title }} - {{ site.description }}</title>
<meta name="description" content="{{ site.description }}">
<nav>
<ul>
<li><a href="/">Home</a></h1>
<li><a href="/news/">News</a>
<li><a href="/documentation/">Documentation</a>
<li><a href="/contribute/">Contribute</a>
<li><a href="/download/">Download</a>
</ul>
</nav>
{{ content }}
<footer>
<ul>
<li><a href="http://kozea.fr">Made with ❤ by Kozea</a></li>
<li><a href="{{ site.github.repository_url }}">Fork me on GitHub</a></li>
</ul>
</footer>

10
_layouts/page.html Normal file
View file

@ -0,0 +1,10 @@
---
layout: default
---
<main>
<section>
<h1>{{ page.title }}</h1>
{{ content }}
</section>
</main>