-
Notifications
You must be signed in to change notification settings - Fork 0
/
links.html
49 lines (37 loc) · 1.04 KB
/
links.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
---
title: Links
subtitle: Links
description: 'Venture outside of your daily web-routine, read about some real projects. These links are way more than just Friends and Resources'
tags:
- links
- music
- record
- labels
- resources
- friends
video_path: /assets/vid/links.mp4
image: /assets/vid/links.jpg
---
{% include relBase.html %}
{% include header.html %}
{% assign sorted = site.data.links | sort: 'title' %}
{% for post in sorted %}
<section class="front-section" id="read">
<div style="background-image:url({{ post.image }})">
<p class="editor-link"><a href="cloudcannon:collections/_posts/{{ post.path }}" rel="nofollow"
class="btn"><strong>✎</strong> Edit Post</a></p>
</div>
<div class="description">
<div class="container">
<div class="">
<h3>
{{ post.banner }}
</h3>
</div>
<div>
<p><a class="button" href="{{ post.url }}" rel="noopener" target="_blank">🔗 {{ post.title }}</a></p>
</div>
</div>
</div>
</section>
{% endfor %}