-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
130 lines (97 loc) · 3.29 KB
/
index.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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
<!--cindex doc:
You can customize this page directly.
Add or remove links and sources, etc.
For cindex you only need to have one tag with class="pages-index"
This is where new pages will be indexed when running cindex up|gen PATH
Where PATH is the destination where your website was initiated e.g.
cindex up .
cindex gen .
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--
cindex doc:
Change me!
-->
<title>Bitgolia blog</title>
<!-- Style -->
<link rel="stylesheet" href="style.css">
<!-- Font -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Courier+Prime:ital,wght@0,400;0,700;1,400;1,700&display=swap" rel="stylesheet">
</head>
<body>
<div>
<div>
<a href="https://bitgolia.com">
<h1>Bitgolia</h1>
</a>
</div>
</div>
<hr>
<br>
<br>
<div>
<div>
<!--
cindex doc:
This is the default index page. Where your new pages will be listed when running cindex gen|up PATH
Where PATH is the destination where your website was initiated e.g.
cindex up .
cindex gen .
You can edit all elements inside here, but be sure to leave one tag with class="pages-index" where
the index for your pages will be injected.
Currently this class is in the section tag directly below this comment.
You can find class="pages-index" below this comment. As you see, you can append additional classes for styling,
This will not cause problems to cindex parsing functions.
The links to new pages will appear here, create a draft and run:
cindex gen PATH
Where PATH is the destination where your website was initiated e.g.
cindex gen .
IMPORTANT: All html content inside the tag with class="pages-index" will be replaced by the content in index/_index.html
-->
<div>
<h4>
<br>Welcome to Bitgolia Blog by Moises Soto.<br>
</h4>
<br>
<br>
<br>
<hr>
<br>
<br>
<section class="tag-index">
<h2 class="page-title" id="tagpage-title">Categories</h2>
<ol id="tag-list">
<li class="cindex-index"><a href="categories/awk.html">awk</a></li>
<li class="cindex-index"><a href="categories/unix.html">unix</a></li>
<li class="cindex-index"><a href="categories/linux.html">linux</a></li>
<li class="cindex-index"><a href="categories/pfsense.html">pfsense</a></li>
<li class="cindex-index"><a href="categories/grub.html">grub</a></li>
<li class="cindex-index"><a href="categories/troubleshooting.html">troubleshooting</a></li>
</ol>
</section>
</div>
<br>
<br>
<hr>
<br>
<br>
<section class="pages-index">
<h2 class="page-title">Articles</h2>
<ol id="index-list">
<li class="cindex-index">Sat Jun 03 2023, 23:02:13 - <a href="pages/awk.html">Awk Introduction</a></li>
<li class="cindex-index">Sun Aug 27 2023, 23:02:00 - <a href="pages/pfsense.html">pfSense 4G Modem</a></li>
<li class="cindex-index">Sat Oct 05 2024, 00:13:26 - <a href="pages/troubleshoot_grub2.html">Troubleshooting GRUB</a></li>
</ol>
</section>
</div>
<!-- Remove me -->
<p>
<a href="https://www.npmjs.com/package/cindex" target="_blank">Documentation</a>
</p>
</html>