forked from RE3-Github-Organization/Cuttle-Fish
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaktuellt.html
69 lines (63 loc) · 2.69 KB
/
aktuellt.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
---
title: Aktuellt från Cuttlefish
description: 'Resmål och restips, nyheter och erbjudanden.'
permalink: /aktuellt/
---
{% for post in site.posts limit: 1 %}
<section id="banner" style="background-image: url('{{ post.image }}');height: calc(100% - 40px);">
<div class="content">
<header style="background-color: rgba(230, 255, 230, 0.75);">
<img src="/images/CuttlefishAvatar.svg" />
<h1>{{ page.title }}</h1>
<p>{{ page.description }}</p>
<h2>{{ post.title }}</h2>
<p>{{ post.description | truncatewords: '20' }} </p>
<br />
Publicerad: {{ post.date | date: '%Y-%m-%d' }}<br /><p></p>
<a href="{{ post.url }}" class="button primary">Läs mer</a>
</header>
</div>
<a href="#main" class="goto-next scrolly">Next</a>
</section>
{% endfor %}
<!-- Main -->
<div id="main" class="wrapper style1">
<div class="container">
<header class="major editable">
<h2>Upplev världen och hitta dig själv i den!</h2>
<p>Här nedan finner du konkreta tips, inspirerande artiklar och skildringar från olika delar av världen!</p>
</header>
<!-- Image -->
<section>
<div class="box alt">
<div class="row gtr-50 gtr-uniform">
{% for post in site.posts limit: 5 %}
<div class="col-4 col-6-xsmall#" style="flex: 1 1 400px;"><a href="{{ post.url}}"><span class="image fit"><img src="{{ post.image }}" alt="{{ post.title }}" /></span></a>
<h3>{{ post.title }}</h3>
<p>{{ post.date | date: "%a, %b %d, %Y" }}</p>
<p>{{ post.description }}</p>
<ul class="actions">
<li>
<a href="{{ post.url }}" class="button primary">Läs mer</a>
</li>
</ul>
<!-- Editor Link -->
<a href="cloudcannon:collections/{{ post.path }}" rel="nofollow" class="editor-link cms-editor-link">Redigera Post</a>
</div>
{% endfor %}
<div class="col-4 col-6-xsmall#" style="flex: 1 1 400px;"><a href="/arkiv/"><span class="image fit"><img src="/images/arkiv.jpg" alt="{{ post.title }}" /></span></a>
<h3>Arkiv</h3>
<p>Läs alla våra tips och inlägg</p>
<ul class="actions">
<li>
<a href="/arkiv/" class="button primary">Gå till arkivet</a>
</li>
</ul>
<!-- Editor Link -->
<a href="cloudcannon:collections/{{ post.path }}" rel="nofollow" class="editor-link cms-editor-link">Redigera Post</a>
</div>
</div>
</div>
</section>
</div>
</div>