-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
277 lines (196 loc) · 8.93 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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>xTriangle - Episodes</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="My super duper cool podcast.
">
<meta name="author" content="Uncle Octopod">
<link rel="alternate" type="application/atom+xml" href="general_feed.xml" title="General Site Atom Feed (No Podcast Metadata!)" />
<link rel="alternate" type="application/rss+xml" title="m4a Episode RSS-Feed" href="episodes.m4a.rss" />
<link rel="alternate" type="application/rss+xml" title="ogg Episode RSS-Feed" href="episodes.ogg.rss" />
<link rel="alternate" type="application/rss+xml" title="mp3 Episode RSS-Feed" href="episodes.mp3.rss" />
<link rel="stylesheet" type="text/css" href="assets/css/main.css">
<script type='text/javascript' src="assets/js/jquery.min.js"></script>
<script type='text/javascript' src="assets/js/bootstrap.min.js"></script>
<script type='text/javascript' src="assets/js/icheck.min.js"></script>
<script type='text/javascript' src="assets/js/jquery.fs.selecter.min.js"></script>
<script type='text/javascript' src="assets/js/jquery.fs.stepper.min.js"></script>
<script type='text/javascript' src="assets/js/custom.js"></script>
</head>
<body>
<div class="container-fluid">
<nav class="navbar navbar-default">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
<span class="sr-only">Navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="">xTriangle</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li class="active"><a class="active" href="">Episodes</a></li>
<li><a href="imprint.html">Imprint</a></li>
</ul>
<form class="navbar-form navbar-right" action="https://google.com/search" method="get" role="search">
<div class="form-group">
<input type="text" name="q" class="form-control" placeholder="search item" value="">
<input type="hidden" name="q" value="site:localhost" />
</div>
<button type="submit" class="btn btn-default">Search</button>
</form>
</div><!--/.nav-collapse -->
</div>
</nav>
<div class="container">
<div class="row ">
<div class="col-sm-8">
<div class="content">
<section id="cad62e66" class="active">
<div class="page-header">
<h1>
<a class="episode_title" href="jekyll/update/2018/08/25/welcome-to-jekyll.html#cad62e66">Welcome to Jekyll!</a>
<small class="episode_date">
25. August 2018
</small> <br />
<small></small>
</h1>
</div>
<p>You’ll find this post in your <code class="highlighter-rouge">_posts</code> directory. Go ahead and edit it and re-build the site to see your changes. You can rebuild the site in many different ways, but the most common way is to run <code class="highlighter-rouge">jekyll serve</code>, which launches a web server and auto-regenerates your site when a file is updated.</p>
<p>To add new posts, simply add a file in the <code class="highlighter-rouge">_posts</code> directory that follows the convention <code class="highlighter-rouge">YYYY-MM-DD-name-of-post.ext</code> and includes the necessary front matter. Take a look at the source for this post to get an idea about how it works.</p>
<p>Jekyll also offers powerful support for code snippets:</p>
<figure class="highlight"><pre><code class="language-ruby" data-lang="ruby"><span class="k">def</span> <span class="nf">print_hi</span><span class="p">(</span><span class="nb">name</span><span class="p">)</span>
<span class="nb">puts</span> <span class="s2">"Hi, </span><span class="si">#{</span><span class="nb">name</span><span class="si">}</span><span class="s2">"</span>
<span class="k">end</span>
<span class="n">print_hi</span><span class="p">(</span><span class="s1">'Tom'</span><span class="p">)</span>
<span class="c1">#=> prints 'Hi, Tom' to STDOUT.</span></code></pre></figure>
<p>Check out the <a href="https://jekyllrb.com/docs/home">Jekyll docs</a> for more info on how to get the most out of Jekyll. File all bugs/feature requests at <a href="https://github.com/jekyll/jekyll">Jekyll’s GitHub repo</a>. If you have questions, you can ask them on <a href="https://talk.jekyllrb.com/">Jekyll Talk</a>.</p>
<hr />
<a href="https://twitter.com/share" class="button btn-primary btn-sm" data-url="jekyll/update/2018/08/25/welcome-to-jekyll.html" data-text="Welcome to Jekyll!">
<i class="fa fa-twitter"></i> Tweet</a>
<hr />
</section>
<section id="6dc82a9e">
<div class="page-header">
<h1>
<a class="episode_title" href="Epi/episode0.html#6dc82a9e">Episode 0</a>
<small class="episode_date">
22. März 2016
</small> <br />
<small>Getting Started Is Never Easy</small>
</h1>
</div>
<section id="6dc82a9e">
<div class="page-header">
<h1>
<a class="episode_title" href="Epi/episodeN.html#6dc82a9e">Episode N</a>
<small class="episode_date">
25. August 2018
</small> <br />
<small>බ්රව්සරයෙත් ලිනක්ස්</small>
</h1>
</div>
</section>
</div>
</div>
<div id="sidebar" class="col-sm-4">
<div class="well">
<div class="page-header">
<h3>
xTriangle
<br/><small>Static Site Podcast Publishing for Geeks</small>
</h3>
</div>
<p class="text-center">
<img width="200px" src="img/logo-360x360.png" alt="Octopod logo">
</p>
<p>My super duper cool podcast.</p>
<script class="podlove-subscribe-button"
src="/subscribe-button/javascripts/app.js"
data-language="en"
data-size="medium auto"
data-style="filled"
data-json-data="podcastData"
data-colors="#FC6E51;green;blue">
</script>
<script>
window.podcastData = {
"title": "Octopod",
"subtitle": "Static Site Podcast Publishing for Geeks",
"description": "My super duper cool podcast.",
"cover": "img/logo-360x360.png",
"feeds": [
{
"type": "audio",
"format": "m4a",
"url": "episodes.m4a.rss",
"directory-url-itunes": "https://itunes.apple.com/at/podcast/myname/id232323",
"variant": "high"
},
{
"type": "audio",
"format": "ogg",
"url": "episodes.ogg.rss",
"directory-url-itunes": "https://itunes.apple.com/at/podcast/myname/id232323",
"variant": "high"
},
{
"type": "audio",
"format": "mp3",
"url": "episodes.mp3.rss",
"directory-url-itunes": "https://itunes.apple.com/at/podcast/myname/id232323",
"variant": "high"
},
]
}
</script>
</p>
<hr/>
<h4>RSS-Feeds</h4>
<ol type="i">
<li><a href="episodes.m4a.rss"><i class="fa fa-rss"></i> m4a-RSS-Feed</a></li>
<li><a href="episodes.ogg.rss"><i class="fa fa-rss"></i> ogg-RSS-Feed</a></li>
<li><a href="episodes.mp3.rss"><i class="fa fa-rss"></i> mp3-RSS-Feed</a></li>
</ol>
<h4>JSON-Feeds</h4>
<ol type="i">
<li><a href="feed.ogg.json"><i class="fa fa-rss-square"></i> ogg-JSON-Feed</a></li>
<li><a href="feed.m4a.json"><i class="fa fa-rss-square"></i> m4a-JSON-Feed</a></li>
<li><a href="feed.mp3.json"><i class="fa fa-rss-square"></i> mp3-JSON-Feed</a></li>
</ol>
<h4>Directories</h4>
<ol type="i">
<li>in Apple-<a href="https://itunes.apple.com/at/podcast/myname/id232323"><i class="fa fa-apple"></i> Itunes</a></li>
</ol>
<h4>Credits</h4>
<ul>
<li>Music: <a href="http://www.bensound.com/royalty-free-music">Bensound</a></li>
</ul>
<h4>License</h4>
<a rel="license" href="https://creativecommons.org/licenses/by/4.0/">
<img alt="Creative Commons License" style="border-width:0" src="https://i.creativecommons.org/l/by/4.0/88x31.png" />
</a>
<hr/>
<a href="https://twitter.com/my_twitter_handle"
class="button btn-primary btn-sm"
data-show-count="false">
<i class="fa fa-twitter"></i>Follow @my_twitter_handle
</a>
</div>
</div>
</div>
<div class="row" id="footer">
<small class="pull-right">
Powered by <a href="https://jekyll-octopod.github.io/">jekyll-octopod</a>
and <a href="http://jekyllrb.com/">Jekyll</a>.<a href="https://github.com/xTriangle/xtriangle.github.io/issues">Report an issue</a>.
</small>
</div>
</div><!-- /.container -->
</div><!-- /.container -->
</html>