-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathnotes.html
More file actions
97 lines (92 loc) · 2.79 KB
/
Copy pathnotes.html
File metadata and controls
97 lines (92 loc) · 2.79 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
89
90
91
92
93
94
95
96
97
---
title: Notes
layout: default
description: Notes of learning
header-img: "img/note-bg.jpg"
---
<!--Page Header-->
<header class="intro-header" style="background-image: url('{{ site.baseurl }}/{% if page.header-img %}{{ page.header-img }}{% else %}{{ site.header-img }}{% endif %}')">
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1">
<div class="site-heading" id="note-heading">
<h1>{% if page.title %}{{ page.title }}{% else %}{{ site.title }}{% endif %}</h1>
<span class="subheading">{{ page.description }}</span>
</div>
</div>
</div>
</div>
</header>
<!--Main Content -->
<div class="container">
<div class="row">
<!--Sidebar Container-->
<div class="
col-lg-3 col-lg-offset-0
col-md-3 col-md-offset-0
col-sm-12
col-xs-12
sidebar-container
notes-container
">
<!--Featured Notes-->
<!--added by BING-->
{% if site.featured-notes %}
<section>
<h5>NOTES TAGS</h5>
<div class="tags">
{% for category in site.categories %}
<a href="{{ site.baseurl }}/notes/#{{ category[0] }}"
title="{{ category[0] }}" rel="{{ category[1].size }}">
{{ category[0] }}
</a>
<br>
{% endfor %}
</div>
<hr>
</section>
{% endif %}
</div>
<!--Note_content-->
<div class="col-lg-8 col-md-10">
<!--Notes preview-->
{% for category in site.categories %}
<div class="one-note-list">
<span class="fa fa-book listing-seperator" id="{{ category[0] }}">
<span class="note-text">{{ category[0] }}</span>
</span>
{% for post in category[1] %}
<div class="post-preview">
<a href="{{ post.url | prepend: site.baseurl }}">
<h2 class="post-title">
{{ post.title }}
</h2>
{% if post.subtitle %}
<h3 class="post-subtitle">
{{ post.subtitle }}
</h3>
{% endif %}
</a>
</div>
<hr>
{% endfor %}
</div>
{% endfor %}
</div>
</div>
</div>
<!-- Pager -->
{% if paginator.total_pages > 1 %}
<ul class="pager">
{% if paginator.previous_page %}
<li class="previous">
<a href="{{ paginator.previous_page_path | prepend: site.baseurl | replace: '//', '/' }}">← Preview Page</a>
</li>
{% endif %}
{% if paginator.next_page %}
<li class="next">
<a href="{{ paginator.next_page_path | prepend: site.baseurl | replace: '//', '/' }}">Next Page →</a>
</li>
{% endif %}
</ul>
{% endif %}