-
Notifications
You must be signed in to change notification settings - Fork 0
/
artists.html
50 lines (41 loc) · 1.15 KB
/
artists.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
---
title: Basspistol Artists
subtitle: Roster
description: 'The Basspistol roster, united powerful syndicated Artists. Ordinary people with extraordinary visions'
tags:
- basspistol
- artists
- rosters
- franky
- fresco
- jokko
- sakrecoer
- max Park
- fraglebay
- sweatsky
- tikov
video_path: /assets/vid/artists.mp4
image: /assets/vid/artists.jpg
---
{% include relBase.html %}
{% include header.html %}
{% assign sorted = site.artists | sort: 'id' %}
{% 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/_artists/{{ post.path }}" rel="nofollow"
class="btn"><strong>✎</strong> Edit Post</a></p>
</div>
<div class="description">
<div class="container">
<div class="">
<h3>{{ post.display_name }}</h3>
{{ post.bio_html }}
</div>
<div>
<p><a class="button" href="{{ post.link }}?ref=TheMusicSyndicateWasHere" traget="_blank" rel="noopener" >🌍 {{ post.display_name }}</a></p>
</div>
</div>
</div>
</section>
{% endfor %}