-
Notifications
You must be signed in to change notification settings - Fork 0
/
feed.xml
481 lines (346 loc) · 30.7 KB
/
feed.xml
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
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>edomus.io</title>
<description>edomus.io
</description>
<link>http://littlerkap.github.io/edomus/</link>
<atom:link href="http://littlerkap.github.io/edomus/feed.xml" rel="self" type="application/rss+xml"/>
<pubDate>Sat, 19 Nov 2016 12:33:32 +0530</pubDate>
<lastBuildDate>Sat, 19 Nov 2016 12:33:32 +0530</lastBuildDate>
<generator>Jekyll v3.3.0</generator>
<item>
<title>About the Jekyll Polymer Theme</title>
<description><p><em>Taken from the readme file of the project’s <a href="https://github.com/jtebert/jekyll-polymer">Github repository</a>)</em></p>
<p>A Jekyll theme built with Google’s Polymer library and following the material design specifications.</p>
<p>There are a few custom web components included designed to match Material design.</p>
<p>I created this theme because I couldn’t figure out how to set up a Jekyll project to play nicely with Polymer, and because I didn’t find any Jekyll blog themes available that used Polymer or followed Google’s material design specifications.</p>
<!--more-->
<h2 id="features">Features</h2>
<ul>
<li>Full-text search with <a href="https://github.com/christian-fei/Simple-Jekyll-Search">simple-jekyll-search</a></li>
<li>Paginated home page</li>
<li>Support for featured post images (appears on cards in previews)</li>
<li>Threaded comments with Disqus</li>
<li>Google Analytics integration</li>
</ul>
<h2 id="installation-instructions">Installation instructions</h2>
<p>(Instructions are based off of those for the <a href="https://github.com/PolymerElements/polymer-starter-kit">Polymer Starter Kit</a>.)</p>
<ul>
<li>Clone this repository or download it as a .zip file and unzip.</li>
<li>Install jekyll (and any other Ruby gems) with <code class="highlighter-rouge">bundle install</code>. (Prerequisite: must have Ruby installed. You may also have to install bundler with <code class="highlighter-rouge">gem install bundler</code>.)</li>
<li>From the project root folder, run <code class="highlighter-rouge">npm install -g gulp bower &amp;&amp; npm install &amp;&amp; bower install</code>. (See the <a href="https://github.com/PolymerElements/polymer-starter-kit#install-dependencies">Polymer Starter Kit installation instructions</a> for more details or troubleshooting.)</li>
</ul>
<h2 id="structure">Structure</h2>
<ul>
<li><code class="highlighter-rouge">app/</code>: All Jekyll content is here. (This is where all the editing happens)
<ul>
<li><code class="highlighter-rouge">bower_components</code>: Content installed via bower ends up here</li>
<li><code class="highlighter-rouge">elements/</code>: Custom web components using Polymer</li>
<li><code class="highlighter-rouge">images/</code>: User images</li>
<li>‘media/’: Other user content (PDFs, videos, etc.) for final product</li>
<li><code class="highlighter-rouge">scripts/</code>: Javascript files</li>
<li><code class="highlighter-rouge">styles/</code>: Custom CSS</li>
</ul>
</li>
<li><code class="highlighter-rouge">dist/</code>: Built output from Gulp. (Use to publish static content)</li>
<li><code class="highlighter-rouge">node_modules</code>: Content installed via npm goes here</li>
</ul>
<h2 id="deployment">Deployment</h2>
<h3 id="servewatch">Serve/watch</h3>
<p><code class="highlighter-rouge">gulp serve</code>: Starts a jekyll serve process on the default port (4000 or whatever is specified in <code class="highlighter-rouge">_config.yml</code>).</p>
<p><code class="highlighter-rouge">gulp serve --port 6666</code>: Start serving on port <code class="highlighter-rouge">6666</code></p>
<p><code class="highlighter-rouge">gulp serve:dist</code>: Build as below, and serve the result from the <code class="highlighter-rouge">dist/</code> directory. (Useful for testing changes to the gulpfile.)</p>
<h3 id="build-and-vulcanize">Build and vulcanize</h3>
<p><code class="highlighter-rouge">gulp</code>: Builds the files with jekyll, vulcanizes, minimizes, and puts the result in the <code class="highlighter-rouge">dist/</code> directory. (This can be slow.)</p>
<h2 id="deploy">Deploy</h2>
<p><code class="highlighter-rouge">gulp deploy-gh-pages</code>: Deploy the current build to the gh-pages branch of your repository.</p>
<p><code class="highlighter-rouge">gulp build-deploy-gh-pages</code>: Rebuild and then deploy. (Equivalent to <code class="highlighter-rouge">gulp &amp;&amp; gulp deploy-gh-pages</code>)</p>
<h2 id="future-improvements">Future Improvements:</h2>
<ul>
<li>Improve gulp build
<ul>
<li>Minimize JS, CSS, HTML</li>
</ul>
</li>
<li>Search
<ul>
<li>Ripple effect in search results on click (needs set height)</li>
<li>Escape toggles search show</li>
<li>arrow keys/tab moves focus on search results</li>
<li>better animation for search bar leaving/entering</li>
</ul>
</li>
<li>Navigation drawer
<ul>
<li>Change hover effect on drawer items (see Google Music)</li>
<li>Make selected/active items in drawer colored</li>
</ul>
</li>
<li>Page transition animations</li>
<li>Give option of setting card-colorbar color</li>
<li>Add ripple effect to nav drawer menu items</li>
<li>Pagination:
<ul>
<li>Maybe replace with actual buttons</li>
<li>hover effects like buttons?</li>
<li>Handle if it gets too wide for screen? (limit number of page links)</li>
</ul>
</li>
<li>Tags
<ul>
<li>Show tags with posts</li>
<li>Allow filtering by tag</li>
</ul>
</li>
<li>Add material box or lightbox for images</li>
<li>Add ‘source’ option for YAML frontmatter</li>
<li>increase spacing between list items</li>
<li>Fix things like header-panel to utilize updates to polymer paper elements</li>
</ul>
<h3 id="known-issues">Known issues</h3>
<ul>
<li>JS and HTML aren’t minimized</li>
<li>Too much space on cards between end of excerpt and read more button</li>
</ul>
</description>
<pubDate>Fri, 19 Jun 2015 00:00:00 +0530</pubDate>
<link>http://littlerkap.github.io/edomus/2015/06/19/about-jekyll-polymer-theme/</link>
<guid isPermaLink="true">http://littlerkap.github.io/edomus/2015/06/19/about-jekyll-polymer-theme/</guid>
<category>jekyll</category>
<category>design</category>
</item>
<item>
<title>Post with blocks of text</title>
<description><p>Schlitz YOLO synth sriracha lumbersexual magna, lo-fi leggings nostrud pug Carles XOXO hoodie eiusmod. Ea officia crucifix sunt lumbersexual nesciunt, jean shorts Etsy occupy tousled ennui irony. Adipisicing exercitation bespoke, Pinterest drinking vinegar officia food truck aliquip. Chillwave Intelligentsia four loko flannel cornhole bespoke. Ea chillwave ennui anim commodo. Wayfarers brunch trust fund crucifix, squid kitsch health goth Pitchfork cliche Etsy sustainable iPhone distillery 8-bit. Thundercats non Portland forage minim selfies, food truck irure mustache.</p>
<!--more-->
<p>Enim cardigan Tumblr, Thundercats trust fund Godard Austin cliche occaecat literally post-ironic drinking vinegar salvia magna small batch. Brunch lomo chambray delectus narwhal whatever, sriracha Marfa paleo twee. Meditation dreamcatcher tattooed Truffaut ullamco. Try-hard deep v stumptown quis Vice mixtape, ad Etsy odio paleo quinoa. Ennui seitan put a bird on it banjo culpa. Narwhal before they sold out jean shorts ad ullamco, et ennui magna. Kickstarter paleo listicle nulla, occaecat incididunt nesciunt retro salvia.</p>
<p>Ugh Wes Anderson kogi master cleanse, trust fund leggings sed High Life drinking vinegar. Ad cornhole artisan dreamcatcher YOLO, labore Banksy eiusmod messenger bag enim tofu culpa. High Life qui street art cardigan. Trust fund Banksy keffiyeh pickled, Brooklyn single-origin coffee actually salvia. Sustainable id mlkshk whatever. PBR cillum drinking vinegar swag. Keytar magna cold-pressed brunch.</p>
<p>Farm-to-table PBR craft beer, cliche commodo food truck before they sold out nostrud adipisicing semiotics. Nesciunt kitsch Carles, typewriter banjo sapiente bitters four dollar toast migas. Umami tousled irony taxidermy, PBR +1 bespoke culpa. Kogi aliqua single-origin coffee, shabby chic nisi trust fund master cleanse mumblecore aute Banksy quinoa. Mlkshk small batch gastropub jean shorts. You probably haven’t heard of them vegan Tumblr, odio Blue Bottle iPhone stumptown freegan ut tempor selvage biodiesel post-ironic nesciunt. Swag culpa bespoke, mixtape Tumblr American Apparel ut Pitchfork.</p>
<p>Cronut asymmetrical synth, Marfa meditation twee tempor quis Thundercats scenester plaid readymade salvia dolor fugiat. Vice assumenda flannel reprehenderit before they sold out, flexitarian normcore locavore pickled chillwave. Aliqua in wayfarers, cardigan narwhal esse mustache tote bag 8-bit placeat YOLO. Typewriter master cleanse cold-pressed food truck. DIY YOLO gentrify, freegan mustache ethical nesciunt gluten-free small batch tofu. Placeat tempor artisan, delectus ennui duis incididunt irure pariatur skateboard. Narwhal wolf esse leggings, bitters Williamsburg put a bird on it enim swag four dollar toast Vice Schlitz cardigan irony dreamcatcher.</p>
<p>Occaecat magna Intelligentsia, laborum synth before they sold out Helvetica nulla kale chips eu next level DIY trust fund. Forage pour-over scenester ut meggings. Food truck eu labore 90’s, deserunt messenger bag next level paleo PBR&amp;B pork belly. Jean shorts DIY before they sold out direct trade, vegan tote bag culpa mixtape nesciunt slow-carb listicle ennui put a bird on it Brooklyn. Ut cronut lumbersexual, letterpress stumptown delectus seitan reprehenderit Bushwick messenger bag incididunt street art polaroid lomo hella. Do voluptate pork belly, fanny pack direct trade tote bag nihil. Mumblecore aesthetic Tumblr VHS master cleanse Portland.</p>
</description>
<pubDate>Wed, 17 Jun 2015 00:00:00 +0530</pubDate>
<link>http://littlerkap.github.io/edomus/2015/06/17/hipsum/</link>
<guid isPermaLink="true">http://littlerkap.github.io/edomus/2015/06/17/hipsum/</guid>
<category>multi-word tag</category>
</item>
<item>
<title>Image in front matter (featured image)</title>
<description><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>
<!--more-->
<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">#=&gt; prints 'Hi, Tom. You really suck.' to STDOUT.</span></code></pre></figure>
<p>Check out the <a href="http://jekyllrb.com">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://github.com/jekyll/jekyll-help">Jekyll’s dedicated Help repository</a>.</p>
</description>
<pubDate>Wed, 10 Jun 2015 19:33:06 +0530</pubDate>
<link>http://littlerkap.github.io/edomus/jekyll/update/2015/06/10/featured-image/</link>
<guid isPermaLink="true">http://littlerkap.github.io/edomus/jekyll/update/2015/06/10/featured-image/</guid>
<category>images</category>
<category>code</category>
<category>jekyll</category>
<category>update</category>
</item>
<item>
<title>Welcome to Jekyll!</title>
<description><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 --watch</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>
<!--more-->
<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">#=&gt; prints 'Hi, Tom' to STDOUT.</span></code></pre></figure>
<p>Check out the <a href="http://jekyllrb.com">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://github.com/jekyll/jekyll-help">Jekyll’s dedicated Help repository</a>.</p>
</description>
<pubDate>Tue, 09 Jun 2015 02:57:27 +0530</pubDate>
<link>http://littlerkap.github.io/edomus/2015/06/09/welcome-to-jekyll/</link>
<guid isPermaLink="true">http://littlerkap.github.io/edomus/2015/06/09/welcome-to-jekyll/</guid>
<category>jekyll</category>
<category>code</category>
</item>
<item>
<title>Typography</title>
<description><p>Here are the different features and styles available for posts written in Markdown. To see how to create them, check out the source markdown file.</p>
<!--more-->
<h1 id="headings">Headings</h1>
<h1 id="heading-1">Heading 1</h1>
<h2 id="heading-2">Heading 2</h2>
<h3 id="heading-3">Heading 3</h3>
<h4 id="heading-4">Heading 4</h4>
<h5 id="heading-5">Heading 5</h5>
<h6 id="heading-6">Heading 6</h6>
<h1 id="tables">Tables</h1>
<p><strong>Markdown Extra</strong> has a special syntax for tables:</p>
<table>
<thead>
<tr>
<th>Item</th>
<th>Value</th>
</tr>
</thead>
<tbody>
<tr>
<td>Computer</td>
<td>1600 USD</td>
</tr>
<tr>
<td>Phone</td>
<td>12 USD</td>
</tr>
<tr>
<td>Pipe</td>
<td>1 USD</td>
</tr>
</tbody>
</table>
<p>You can specify column alignment with one or two colons:</p>
<table>
<thead>
<tr>
<th style="text-align: left">Item</th>
<th style="text-align: right">Value</th>
<th style="text-align: center">Qty</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align: left">Computer</td>
<td style="text-align: right">1600 USD</td>
<td style="text-align: center">5</td>
</tr>
<tr>
<td style="text-align: left">Phone</td>
<td style="text-align: right">12 USD</td>
<td style="text-align: center">12</td>
</tr>
<tr>
<td style="text-align: left">Pipe</td>
<td style="text-align: right">1 USD</td>
<td style="text-align: center">234</td>
</tr>
</tbody>
</table>
<h1 id="lists">Lists</h1>
<ul>
<li>Item 1</li>
<li>Item 2
<ul>
<li>Subitem 2.1</li>
<li>Subitem 2.2</li>
</ul>
</li>
<li>Item 3</li>
</ul>
<h1 id="blockquotes">Blockquotes</h1>
<p>You can write block quotes.</p>
<blockquote>
<p>This is a block quote.
It’s split over multiple lines.</p>
<p>It can also have multiple paragraphs.</p>
</blockquote>
<h1 id="math-with-mathjax">Math (with MathJax)</h1>
<p>You can render <em>LaTeX</em> mathematical expressions using <strong>MathJax</strong>, as on <a href="http://math.stackexchange.com/">math.stackexchange.com</a>:</p>
<p>There are inline equations like \( y = x + 2 \) indicated by <code class="highlighter-rouge">\\( ... \\)</code>.</p>
<p>You can also display an equation (not inline displayed) using inline code, like \[ y = x + 4\] which you do with <code class="highlighter-rouge">\\[ ... \\]</code>.</p>
<p>Or you can display a block of math by surrounding it with <code class="highlighter-rouge">$$ ... $$</code>. Like this:</p>
<script type="math/tex; mode=display">\Gamma(z) = \int_0^\infty t^{z-1}e^{-t}dt\,.</script>
<blockquote>
<p><strong>Tip:</strong> Make sure you include MathJax into your publications to render mathematical expression correctly. Your page/template should include something like:</p>
</blockquote>
<div class="highlighter-rouge"><pre class="highlight"><code>&lt;script type="text/javascript" src="https://stackedit.io/libs/MathJax/MathJax.js?config=TeX-AMS_HTML"&gt;&lt;/script&gt;
</code></pre>
</div>
<h1 id="code">Code</h1>
<h2 id="inline-code">Inline code</h2>
<p>Code embedded in a paragraph looks like <code class="highlighter-rouge">this is code</code>. Code can also be in blocks with or without line numbers.</p>
<h2 id="code-blocks">Code blocks</h2>
<p>Code blocks have syntax highlighting courtesy of highlight.js. You can specify the code language and whether you want the code block to include line numbers. (You can include line numbers using just <code class="highlighter-rouge">linenos</code> instead of <code class="highlighter-rouge">linenos=table</code>, but this puts the line numbers in the same lines as the code so that it becomes impossible to copy and paste.)</p>
<p>Without line numbers:</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">#=&gt; prints 'Hi, Tom' to STDOUT. This is a long line to test scrolling if it goes past the box.</span></code></pre></figure>
<p>With line numbers:</p>
<figure class="highlight"><pre><code class="language-ruby" data-lang="ruby"><table style="border-spacing: 0"><tbody><tr><td class="gutter gl" style="text-align: right"><pre class="lineno">1
2
3
4
5</pre></td><td class="code"><pre> <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">#=&gt; prints 'Hi, Tom' to STDOUT.</span><span class="w">
</span></pre></td></tr></tbody></table></code></pre></figure>
<h1 id="definition-lists">Definition Lists</h1>
<p><strong>Markdown Extra</strong> has a special syntax for definition lists too:</p>
<dl>
<dt>Term 1</dt>
<dt>Term 2</dt>
<dd>Definition A</dd>
<dd>Definition B</dd>
<dt>Term 3</dt>
<dd>
<p>Definition C</p>
</dd>
<dd>
<p>Definition D</p>
<blockquote>
<p>part of definition D</p>
</blockquote>
</dd>
</dl>
<h1 id="dividers">Dividers</h1>
<p>Divide up sections and stuff with dividers.</p>
<hr />
<p>They look like that.</p>
<h1 id="font-weights-and-styles">Font weights and styles</h1>
<p>This text is <strong>bold text</strong>.</p>
<p>This is <em>italicized</em> text.</p>
<h1 id="links-and-footnotes">Links and Footnotes</h1>
<p>You can create footnotes like this<sup id="fnref:footnote"><a href="#fn:footnote" class="footnote">1</a></sup>.</p>
<p>You can embed links with a direct link, like <a href="http://www.google.com">this link to Google</a>. Links can also be in a separated form like <a href="http://jekyllrb.com">this link to the Jekyll documention</a>. (That’s useful if you want to link to the same website multiple times <a href="http://jekyllrb.com">like this</a>.)</p>
<div class="footnotes">
<ol>
<li id="fn:footnote">
<p>Here is the <em>text</em> of the <strong>footnote</strong>. <a href="#fnref:footnote" class="reversefootnote">&#8617;</a></p>
</li>
</ol>
</div>
</description>
<pubDate>Mon, 08 Jun 2015 00:00:00 +0530</pubDate>
<link>http://littlerkap.github.io/edomus/2015/06/08/typography/</link>
<guid isPermaLink="true">http://littlerkap.github.io/edomus/2015/06/08/typography/</guid>
<category>markdown</category>
<category>design</category>
<category>code</category>
</item>
<item>
<title>Image in excerpt</title>
<description><p><img src="https://www.google.com/logos/doodles/2015/womens-world-cup-2015-us-first-match-5145027185475584-hp.jpg" /></p>
<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 --watch</code>, which launches a web server and auto-regenerates your site when a file is updated.</p>
<!--more-->
<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">#=&gt; prints 'Hi, Tom' to STDOUT.</span></code></pre></figure>
<p>Check out the <a href="http://jekyllrb.com">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://github.com/jekyll/jekyll-help">Jekyll’s dedicated Help repository</a>.</p>
</description>
<pubDate>Sun, 08 Jun 2014 00:00:00 +0530</pubDate>
<link>http://littlerkap.github.io/edomus/2014/06/08/image-in-excerpt/</link>
<guid isPermaLink="true">http://littlerkap.github.io/edomus/2014/06/08/image-in-excerpt/</guid>
<category>images</category>
<category>code</category>
</item>
</channel>
</rss>