forked from jgthms/marksheet
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpost.html
More file actions
88 lines (78 loc) · 2.27 KB
/
Copy pathpost.html
File metadata and controls
88 lines (78 loc) · 2.27 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
81
82
83
84
85
86
87
88
---
layout: default
route: post
---
<main class="page-container">
<section class="heading">
<div class="container">
<h1>
<em>{{ page.date | date: "%m.%-d" | remove_first: '0' }}</em>
{{ page.title }}
</h1>
<h2>{{ page.subtitle }}</h2>
{% include carbon.html %}
</div>
</section>
<div class="page-content">
<div class="container">
<div class="breadcrumb-holder">
<header id="breadcrumb" class="breadcrumb" data-spy="affix">
<a id="open" class="breadcrumb-toggle">
<span></span>
<span></span>
<span></span>
</a>
<span class="breadcrumb-section">
{% case page.section %}
{% when "web" %}
<i class="fa fa-globe"></i>
{% when "html" %}
<i class="fa fa-html5"></i>
{% when "css" %}
<i class="fa fa-css3"></i>
{% when "sass" %}
<i class="fa fa-rocket"></i>
{% endcase %}
{{ page.section }}
</span>
{% if page.next %}
<a class="breadcrumb-next" href="{{ page.next.url }}">
<i class="fa fa-angle-right"></i>
<span>Next article</span>
</a>
{% endif %}
{% if page.previous %}
<a class="breadcrumb-previous" href="{{ page.previous.url }}">
<i class="fa fa-angle-left"></i>
<span>Previous article</span>
</a>
{% endif %}
</header>
</div>
<nav id="menu" class="menu">
<ul></ul>
</nav>
<article class="content">
{{ content }}
</article>
<nav class="pagination">
{% if page.previous %}
<a class="pagination-previous" href="{{ page.previous.url }}">
<em>← Previous</em>
<strong>{{ page.previous.title }}</strong>
</a>
{% endif %}
{% if page.next %}
<a class="pagination-next" href="{{ page.next.url }}">
<em>Next →</em>
<strong>{{ page.next.title }}</strong>
</a>
{% endif %}
</nav>
</div>
</div>
</main>
<a id="top" class="elevator">
<i class="fa fa-angle-up"></i>
<span>Back to top</span>
</a>