Add 3 historier

This commit is contained in:
Benjamin Bach 2018-12-02 13:06:53 +01:00
parent e9aa0af715
commit 505ea79ee3
3 changed files with 23 additions and 8 deletions

View file

@ -0,0 +1,9 @@
---
title: "3 historier om opstart af kollektiver"
date: 2018-12-02T12:55:02+01:00
draft: false
---
Vi har lavet en lille bog, som du kan hente som PDF her:
[3 historier om opstart af kollektiver.pdf](/3 historier om opstart af kollektiver.pdf)

View file

@ -2,12 +2,17 @@
<section id=content> <section id=content>
<ul class=posts_listing> <ul class=posts_listing>
{{ range first 5 (where .Pages "Section" "calendar") }} {{ range first 5 (where .Pages "Section" "posts") }}
<li> <li>
<h2><a href="{{ .Permalink }}">{{ .Title }}</a></h2> <h2><a href="{{ .Permalink }}">{{ .Title }}</a></h2>
<div id=date> <div id=date>
<time>{{ .Date.Format (.Site.Params.dateform | default "January 2006") }}</time> <time>{{ .Date.Format (.Site.Params.dateform | default "January 2006") }}</time>
</div> </div>
<p>{{ .Summary }}</p>
<div>
<a href="{{ .RelPermalink }}">Read More…</a>
</div>
</li> </li>
{{ end }} {{ end }}
</ul> </ul>

View file

@ -18,11 +18,6 @@
margin:auto; margin:auto;
} }
p {
margin: 20px 0;
line-height:130%;
}
a img { a img {
border:none; border:none;
} }
@ -190,10 +185,11 @@
width:100%; width:100%;
font-size:15px; font-size:15px;
padding:60px 0 80px; padding:60px 0 80px;
margin: 20px 0;
} }
#content h1,#content h2 { #content h1,#content h2 {
margin-bottom:5px; margin-bottom:15px;
} }
#content h2 { #content h2 {
@ -212,6 +208,11 @@
margin-left: 45px; margin-left: 45px;
} }
#content p
{
line-height: 130% !important;
}
.highlight { .highlight {
margin: 10px 0; margin: 10px 0;
} }