-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpost_back_up.html
executable file
·72 lines (46 loc) · 1.32 KB
/
post_back_up.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
70
71
72
---
layout: default
title: Posts
permalink: /postsold/
date:
---
<div class="row">
<!-- Course Sidebar Widgets Column -->
<div class="col-md-4">
<!-- Course categories -->
<div class="well">
{% for posts in site.categories limit:2 %}
<h3>{{ posts | capitalize }}</h3>
<div class="row">
<div class="col-lg-12">
{% for posts in site.categories %}
<li><a href="{{posts.url}}">{{ posts.title }}</a></li>
</li>
<li><a href="#">Upcoming courses</a>
</li>
<li><a href="#">Relevant courses offered by Coursera</a>
</li>
<li><a href="#">Data Carpentry Genomics Curriculum </a>
</li>
<li><a href="#">Chan Zuckerberg Initiative Seminars </a>
</li>
<li><a href="#">Relevant courses offered by edX</a>
</li>
{% endfor %}
</div>
</div>
{% endfor %}
<!-- /.row -->
</div>
</div>
<!-- Course content Column -->
<div class="col-lg-8" class="my-auto">
{% for post in site.posts %}
{% if post.categories %}
<p><a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a> <small class="text-muted">posted:
{{post.date
| date_to_string}} </small>
</p>
{% endif %}
{% endfor %}
</div>