-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
80 lines (70 loc) · 2.02 KB
/
Copy pathindex.html
File metadata and controls
80 lines (70 loc) · 2.02 KB
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
70
71
72
73
74
75
76
77
78
79
80
---
layout: default
title: Your New Jekyll Site
---
<div id="home" class="home overview">
<h1>Blog Posts</h1>
<!-- AUDIO -->
<h2 class="category-heading">Audio</h2>
<ul class="posts audio">
{% for post in site.categories['audio'] %}
<div class="post-content">
{{ post.content}}
</div>
{% endfor %}
</ul>
<!-- NEWS -->
<h2 class="category-heading">News</h2>
<div class="posts news">
{% for post in site.categories['news'] %}
<span>{{ post.date | date_to_string }}</span>
<h3><a href="{{ post.url }}">{{ post.title }}</a></h3>
<div class="post-content">
{{ post.excerpt}}
</div>
{% endfor %}
</div>
<!-- video -->
<h2 class="category-heading">Video</h2>
<div class="posts video">
{% for post in site.categories['video'] %}
<div class="post-content">
{{ post.content}}
</div>
{% endfor %}
</div>
<!-- digitaldownloads -->
<section class="wrapper">
<h2 class="category-heading">Digital Downloads / Bandcamp</h2>
<ul class="posts digitaldownloads row">
{% for post in site.categories['digitaldownloads'] limit:4 %}
<div class="post-content col-6">
{{ post.content}}
</div>
{% endfor %}
</ul>
</section>
<!-- digitaldownloads2 -->
<!-- <h2 class="category-heading">Digital Downloads / Bandcamp</h2>
<ul class="posts digitaldownloads">
{% for post in site.categories['digitaldownloads'] limit:2 %}
<div class="post-content">
{{ post.content}}
</div>
{% endfor %}
</ul> -->
<section class="wrapper">
<h2 class="category-heading">Index newsletterform</h2>
<em>INDEX.HTML NEWSLETTER</em>
</section>
<!--End mc_embed_signup-->
<section class="wrapper">
<h2 class="category-heading">Posts3</h2>
<ul class="posts">
{% for post in site.posts %}
<li><span>{{ post.date | date_to_string }}</span> » <a href="{{ post.url }}">{{ post.title }}</a></li>
{% endfor %}
</ul>
</section>
<h2>Posts2</h2>
</div>