layout | title | permalink |
---|---|---|
page |
About |
/about/ |
UP AND RUNNING WITH DevJournal
Posting
- Create a .markdown file inside <code class="highlighter-rouge">_posts</code> folder.<br />
- Name the file according to the format YY-MM-DD-[short name for your post].<br />
<code>2016-03-30-i-love-design.markdown</code><br />
- Write the <a href="jekyll">Front Matter</a> and content in the file.<br><br>
<div class="example">
<div class="highlight">
<pre>
---
layout: post | default | page
title: String<span class="hint"> Post Title</span>
date: Time Stamp
categories: String | Array of Strings<span class="hint"> Category / Categories </span>
---
</pre>
</div>
</div>
<div class="example">
<div class="highlight">
<pre>
---
layout: post
title: "The One with the Blackout"
date: 2016-03-30 19:45:31 +0530
categories: ["life", "friends"]
---
</pre>
</div>
</div>
Create Pages
- Create a .md file in the root directory.<br />
- Name the file with the desired page link name.<br />
<code>about.md</code><br />
<code>design.md</code><br />
- Write the <a href="jekyll">Front Matter</a> and content in the file.<br><br>
<div class="highlight">
<pre>
---
layout: page
title: String <span class="hint">Title of the webpage</span>
permalink: / String / <span class="hint">Permalink for the webpage</span>
tagline: String <span class="hint">Optional DevJournal Feature : Tagline for the page</span>
---
</pre><br />
</div><br>
<div class="highlight">
<pre>
---
layout: page
title: "Science"
permalink: /science/
tagline : "Humanity is overrated."
---
</pre>
</div>