-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathlinks.html
executable file
·75 lines (56 loc) · 2.29 KB
/
links.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
73
74
75
---
permalink: /links/
---
<!DOCTYPE html>
<html lang="en">
{% include head.html %}
<body>
{% include header.html %}
<div class="container">
<div class="row">
<div class="col-sm-3">
<div id="sidebar">
<ul id="nav-items" class="nav nav-stacked">
<li>
<h3 class="highlight"> <a href="">BSADD Links</a> <i
class="glyphicon glyphicon-dashboard pull-right"></i></h3>
</li>
{% for category in site.data.links %}
<li><a href="#{{ category.category }}">{{ category.side_bar_name }}</a></li>
{% endfor %}
</ul>
</div>
</div>
<div class="col-sm-9 panel content-panel">
<p class="alert alert-warning text-center h3">Yet another internet page for bunch of links</p>
{% for category in site.data.links %}
<p id="{{ category.category }}" class="alert alert-info h3"> {{ category.category }} </p>
<p>{{ category.categoryDesc }} </p>
<table class="table table-hover">
{% for links in category.links %}
<tr>
<td style="width: 25%;">{{ links.title }} </td>
<td style="width: 75%;">
{% if links.links.size == 1 %}
{% for lnk in links.links %}
<a href="{{ lnk.url }}">{{ lnk.linkName }} </a> {{ lnk.linkDesc }}
{% endfor %}
{% else %}
<ul>
{% for lnk in links.links %}
<li><a href="{{ lnk.url }}">{{ lnk.linkName }} </a> {{ lnk.linkDesc }}</li>
{% endfor %}
</ul>
{% endif %}
</td>
</tr>
{% endfor %}
</table>
{% endfor %}
</div>
</div>
</div>
{% include js_link.html %}
</body>
<!-- script references -->
</html>