Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/tummychow/lanyon-hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortummychow <tummychow@users.noreply.github.com>2016-01-02 04:35:49 +0300
committertummychow <tummychow@users.noreply.github.com>2016-01-02 06:29:59 +0300
commit23da532094a124ef8bb5505f8d48b46445a75e41 (patch)
treea65f9bee965df4fa85eec2f78c6835ab24e8a93f
parent4ca6b7e7202ed0a90dc0f8f9afafcb1a82b0978a (diff)
Rebuild with updates
Pagination works (although you can't see it with only 3 posts...), as does highlighting.
-rw-r--r--2013/12/31/whats-jekyll/index.html2
-rw-r--r--2014/01/01/example-content/index.html27
-rw-r--r--2014/01/02/introducing-lanyon/index.html10
-rw-r--r--404.html102
-rw-r--r--404/index.html104
-rw-r--r--about/index.html4
-rw-r--r--another-fixed-page/index.html2
-rw-r--r--fixed/index.html0
-rw-r--r--fixed/index.xml6
-rw-r--r--index.html62
-rw-r--r--index.xml39
-rw-r--r--page/1/index.html1
-rw-r--r--post/index.html2
-rw-r--r--post/index.xml37
-rw-r--r--sitemap.xml33
15 files changed, 219 insertions, 212 deletions
diff --git a/2013/12/31/whats-jekyll/index.html b/2013/12/31/whats-jekyll/index.html
index 9c3d3ea..0f2bfa0 100644
--- a/2013/12/31/whats-jekyll/index.html
+++ b/2013/12/31/whats-jekyll/index.html
@@ -53,8 +53,6 @@
-
-
<a class="sidebar-nav-item " href="http://tummychow.github.io/lanyon-hugo/about/">About</a>
diff --git a/2014/01/01/example-content/index.html b/2014/01/01/example-content/index.html
index a0f8b71..919e3d5 100644
--- a/2014/01/01/example-content/index.html
+++ b/2014/01/01/example-content/index.html
@@ -53,8 +53,6 @@
-
-
<a class="sidebar-nav-item " href="http://tummychow.github.io/lanyon-hugo/about/">About</a>
@@ -105,7 +103,7 @@
<p>Etiam porta <strong>sem malesuada magna</strong> mollis euismod. Cras mattis consectetur purus sit amet fermentum. Aenean lacinia bibendum nulla sed consectetur.</p>
-<h2 id="toc_0">Inline HTML elements</h2>
+<h2 id="inline-html-elements:359d948725c4841afd7b76bfdf6a18a3">Inline HTML elements</h2>
<p>HTML defines a long list of available inline tags, a complete list of which can be found on the <a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Element">Mozilla Developer Network</a>.</p>
@@ -120,27 +118,28 @@
<p>Most of these elements are styled by browsers with few modifications on our part.</p>
-<h2 id="toc_1">Heading</h2>
+<h2 id="heading:359d948725c4841afd7b76bfdf6a18a3">Heading</h2>
<p>Vivamus sagittis lacus vel augue rutrum faucibus dolor auctor. Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Morbi leo risus, porta ac consectetur ac, vestibulum at eros.</p>
-<h3 id="toc_2">Code</h3>
+<h3 id="code:359d948725c4841afd7b76bfdf6a18a3">Code</h3>
<p>Cum sociis natoque penatibus et magnis dis <code>code element</code> montes, nascetur ridiculus mus.</p>
-<div class="highlight" style="background: #272822"><pre style="line-height: 125%"><span style="color: #75715e">// Example can be run directly in your JavaScript console</span>
+<div class="highlight"><pre><code class="language-js" data-lang="js"><span class="c1">// Example can be run directly in your JavaScript console</span>
+
+<span class="c1">// Create a function that takes two arguments and returns the sum of those arguments</span>
+<span class="kd">var</span> <span class="nx">adder</span> <span class="o">=</span> <span class="k">new</span> <span class="nb">Function</span><span class="p">(</span><span class="s2">&quot;a&quot;</span><span class="p">,</span> <span class="s2">&quot;b&quot;</span><span class="p">,</span> <span class="s2">&quot;return a + b&quot;</span><span class="p">);</span>
-<span style="color: #75715e">// Create a function that takes two arguments and returns the sum of those arguments</span>
-<span style="color: #66d9ef">var</span> <span style="color: #a6e22e">adder</span> <span style="color: #f92672">=</span> <span style="color: #66d9ef">new</span> <span style="color: #f8f8f2">Function(</span><span style="color: #e6db74">&quot;a&quot;</span><span style="color: #f8f8f2">,</span> <span style="color: #e6db74">&quot;b&quot;</span><span style="color: #f8f8f2">,</span> <span style="color: #e6db74">&quot;return a + b&quot;</span><span style="color: #f8f8f2">);</span>
+<span class="c1">// Call the function</span>
+<span class="nx">adder</span><span class="p">(</span><span class="mi">2</span><span class="p">,</span> <span class="mi">6</span><span class="p">);</span>
+<span class="c1">// &gt; 8</span>
+</code></pre></div>
-<span style="color: #75715e">// Call the function</span>
-<span style="color: #a6e22e">adder</span><span style="color: #f8f8f2">(</span><span style="color: #ae81ff">2</span><span style="color: #f8f8f2">,</span> <span style="color: #ae81ff">6</span><span style="color: #f8f8f2">);</span>
-<span style="color: #75715e">// &gt; 8</span>
-</pre></div>
<p>Aenean lacinia bibendum nulla sed consectetur. Etiam porta sem malesuada magna mollis euismod. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa.</p>
-<h3 id="toc_3">Lists</h3>
+<h3 id="lists:359d948725c4841afd7b76bfdf6a18a3">Lists</h3>
<p>Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Aenean lacinia bibendum nulla sed consectetur. Etiam porta sem malesuada magna mollis euismod. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus.</p>
@@ -173,7 +172,7 @@
<p>Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Morbi leo risus, porta ac consectetur ac, vestibulum at eros. Nullam quis risus eget urna mollis ornare vel eu leo.</p>
-<h3 id="toc_4">Tables</h3>
+<h3 id="tables:359d948725c4841afd7b76bfdf6a18a3">Tables</h3>
<p>Aenean lacinia bibendum nulla sed consectetur. Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
diff --git a/2014/01/02/introducing-lanyon/index.html b/2014/01/02/introducing-lanyon/index.html
index d199479..8c4f97b 100644
--- a/2014/01/02/introducing-lanyon/index.html
+++ b/2014/01/02/introducing-lanyon/index.html
@@ -53,8 +53,6 @@
-
-
<a class="sidebar-nav-item " href="http://tummychow.github.io/lanyon-hugo/about/">About</a>
@@ -95,7 +93,7 @@
<p>Lanyon is an unassuming <a href="http://jekyllrb.com">Jekyll</a> theme that places content first by tucking away navigation in a hidden drawer. It&rsquo;s based on <a href="http://getpoole.com">Poole</a>, the Jekyll butler.</p>
-<h3 id="toc_0">Built on Poole</h3>
+<h3 id="built-on-poole:3fbbb50789f1ac58c0e5da0cc6426f3f">Built on Poole</h3>
<p>Poole is the Jekyll Butler, serving as an upstanding and effective foundation for Jekyll themes by <a href="https://twitter.com/mdo">@mdo</a>. Poole, and every theme built on it (like Lanyon here) includes the following:</p>
@@ -108,7 +106,7 @@
<li>Syntax highlighting, courtesy Pygments (the Python-based code snippet highlighter)</li>
</ul>
-<h3 id="toc_1">Lanyon features</h3>
+<h3 id="lanyon-features:3fbbb50789f1ac58c0e5da0cc6426f3f">Lanyon features</h3>
<p>In addition to the features of Poole, Lanyon adds the following:</p>
@@ -121,11 +119,11 @@
<p><a href="https://github.com/poole/lanyon#readme">Head to the readme</a> to learn more.</p>
-<h3 id="toc_2">Browser support</h3>
+<h3 id="browser-support:3fbbb50789f1ac58c0e5da0cc6426f3f">Browser support</h3>
<p>Lanyon is by preference a forward-thinking project. In addition to the latest versions of Chrome, Safari (mobile and desktop), and Firefox, it is only compatible with Internet Explorer 9 and above.</p>
-<h3 id="toc_3">Download</h3>
+<h3 id="download:3fbbb50789f1ac58c0e5da0cc6426f3f">Download</h3>
<p>Lanyon is developed on and hosted with GitHub. Head to the <a href="https://github.com/poole/lanyon">GitHub repository</a> for downloads, bug reports, and features requests.</p>
diff --git a/404.html b/404.html
index b81f51f..a18d15e 100644
--- a/404.html
+++ b/404.html
@@ -1 +1,101 @@
-<!DOCTYPE html><html><head><link rel="canonical" href="http://tummychow.github.io/lanyon-hugo/404/"/><meta http-equiv="content-type" content="text/html; charset=utf-8" /><meta http-equiv="refresh" content="0;url=http://tummychow.github.io/lanyon-hugo/404/" /></head></html> \ No newline at end of file
+<!DOCTYPE html>
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en-us">
+
+ <head>
+ <link href="http://gmpg.org/xfn/11" rel="profile">
+ <meta http-equiv="content-type" content="text/html; charset=utf-8">
+
+
+ <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1">
+
+ <title>
+
+ 404 Page not found &middot; Lanyon
+
+ </title>
+
+
+ <link rel="stylesheet" href="http://tummychow.github.io/lanyon-hugo/css/poole.css">
+ <link rel="stylesheet" href="http://tummychow.github.io/lanyon-hugo/css/syntax.css">
+ <link rel="stylesheet" href="http://tummychow.github.io/lanyon-hugo/css/lanyon.css">
+ <link rel="stylesheet" href="http://fonts.googleapis.com/css?family=PT+Serif:400,400italic,700|PT+Sans:400">
+
+
+ <link rel="apple-touch-icon-precomposed" sizes="144x144" href="http://tummychow.github.io/lanyon-hugo/assets/apple-touch-icon-144-precomposed.png">
+ <link rel="shortcut icon" href="http://tummychow.github.io/lanyon-hugo/assets/favicon.ico">
+
+
+ <link rel="alternate" type="application/rss+xml" title="RSS" href="http://tummychow.github.io/lanyon-hugo/atom.xml">
+</head>
+
+
+ <body>
+
+
+<input type="checkbox" class="sidebar-checkbox" id="sidebar-checkbox">
+
+
+<div class="sidebar" id="sidebar">
+ <div class="sidebar-item">
+ <p>A reserved <a href="http://jekyllrb.com" target="_blank">Jekyll</a> theme that places the utmost gravity on content with a hidden drawer. Made by <a href="https://twitter.com/mdo" target="_blank">@mdo</a>.</p>
+ </div>
+
+ <nav class="sidebar-nav">
+ <a class="sidebar-nav-item " href="http://tummychow.github.io/lanyon-hugo/">Home</a>
+ <a class="sidebar-nav-item " href="http://tummychow.github.io/lanyon-hugo/post">Posts</a>
+
+
+
+
+
+
+
+
+
+
+ <a class="sidebar-nav-item " href="http://tummychow.github.io/lanyon-hugo/about/">About</a>
+
+
+
+ <a class="sidebar-nav-item " href="http://tummychow.github.io/lanyon-hugo/another-fixed-page/">Another Fixed Page</a>
+
+
+
+ <a class="sidebar-nav-item" href="http://github.com/tummychow/lanyon-hugo/archive/master.zip">Download</a>
+ <a class="sidebar-nav-item" href="http://github.com/tummychow/lanyon-hugo">GitHub project</a>
+ <span class="sidebar-nav-item">Currently on master</span>
+ </nav>
+
+ <div class="sidebar-item">
+ <p>&copy; 2014. All rights reserved.</p>
+ </div>
+</div>
+
+
+
+ <div class="wrap">
+ <div class="masthead">
+ <div class="container">
+ <h3 class="masthead-title">
+ <a href="http://tummychow.github.io/lanyon-hugo/" title="Home">Lanyon</a>
+ <small>A Jekyll theme</small>
+ </h3>
+ </div>
+ </div>
+
+ <div class="container content">
+
+
+<div class="page">
+ <h1 class="page-title">404</h1>
+ <p>Sorry, we&rsquo;ve misplaced that URL or it&rsquo;s pointing to something that doesn&rsquo;t exist. <a href="http://tummychow.github.io/lanyon-hugo/">Head back home</a> to try finding it again.</p>
+</div>
+
+ </div>
+ </div>
+
+ <label for="sidebar-checkbox" class="sidebar-toggle"></label>
+
+ </body>
+</html>
+
diff --git a/404/index.html b/404/index.html
deleted file mode 100644
index e57660b..0000000
--- a/404/index.html
+++ /dev/null
@@ -1,104 +0,0 @@
-<!DOCTYPE html>
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en-us">
-
- <head>
- <link href="http://gmpg.org/xfn/11" rel="profile">
- <meta http-equiv="content-type" content="text/html; charset=utf-8">
-
-
- <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1">
-
- <title>
-
- 404 &middot; Lanyon
-
- </title>
-
-
- <link rel="stylesheet" href="http://tummychow.github.io/lanyon-hugo/css/poole.css">
- <link rel="stylesheet" href="http://tummychow.github.io/lanyon-hugo/css/syntax.css">
- <link rel="stylesheet" href="http://tummychow.github.io/lanyon-hugo/css/lanyon.css">
- <link rel="stylesheet" href="http://fonts.googleapis.com/css?family=PT+Serif:400,400italic,700|PT+Sans:400">
-
-
- <link rel="apple-touch-icon-precomposed" sizes="144x144" href="http://tummychow.github.io/lanyon-hugo/assets/apple-touch-icon-144-precomposed.png">
- <link rel="shortcut icon" href="http://tummychow.github.io/lanyon-hugo/assets/favicon.ico">
-
-
- <link rel="alternate" type="application/rss+xml" title="RSS" href="http://tummychow.github.io/lanyon-hugo/atom.xml">
-</head>
-
-
- <body>
-
-
-<input type="checkbox" class="sidebar-checkbox" id="sidebar-checkbox">
-
-
-<div class="sidebar" id="sidebar">
- <div class="sidebar-item">
- <p>A reserved <a href="http://jekyllrb.com" target="_blank">Jekyll</a> theme that places the utmost gravity on content with a hidden drawer. Made by <a href="https://twitter.com/mdo" target="_blank">@mdo</a>.</p>
- </div>
-
- <nav class="sidebar-nav">
- <a class="sidebar-nav-item " href="http://tummychow.github.io/lanyon-hugo/">Home</a>
- <a class="sidebar-nav-item " href="http://tummychow.github.io/lanyon-hugo/post">Posts</a>
-
-
-
-
-
-
-
-
-
-
-
-
- <a class="sidebar-nav-item " href="http://tummychow.github.io/lanyon-hugo/about/">About</a>
-
-
-
- <a class="sidebar-nav-item " href="http://tummychow.github.io/lanyon-hugo/another-fixed-page/">Another Fixed Page</a>
-
-
-
- <a class="sidebar-nav-item" href="http://github.com/tummychow/lanyon-hugo/archive/master.zip">Download</a>
- <a class="sidebar-nav-item" href="http://github.com/tummychow/lanyon-hugo">GitHub project</a>
- <span class="sidebar-nav-item">Currently on master</span>
- </nav>
-
- <div class="sidebar-item">
- <p>&copy; 2014. All rights reserved.</p>
- </div>
-</div>
-
-
-
- <div class="wrap">
- <div class="masthead">
- <div class="container">
- <h3 class="masthead-title">
- <a href="http://tummychow.github.io/lanyon-hugo/" title="Home">Lanyon</a>
- <small>A Jekyll theme</small>
- </h3>
- </div>
- </div>
-
- <div class="container content">
-
-
-<div class="page">
- <h1 class="page-title">404</h1>
- <p>Sorry, we&rsquo;ve misplaced that URL or it&rsquo;s pointing to something that doesn&rsquo;t exist. <a href="http://tummychow.github.io/lanyon-hugo/">Head back home</a> to try finding it again.</p>
-
-</div>
-
- </div>
- </div>
-
- <label for="sidebar-checkbox" class="sidebar-toggle"></label>
-
- </body>
-</html>
-
diff --git a/about/index.html b/about/index.html
index 7a322e3..0963628 100644
--- a/about/index.html
+++ b/about/index.html
@@ -53,8 +53,6 @@
-
-
<a class="sidebar-nav-item active " href="http://tummychow.github.io/lanyon-hugo/about/">About</a>
@@ -107,7 +105,7 @@
<p>Learn more and contribute on <a href="https://github.com/poole">GitHub</a>.</p>
-<h2 id="toc_0">Setup</h2>
+<h2 id="setup:6083a88ee3411b0d17ce02d738f69d47">Setup</h2>
<p>Some fun facts about the setup of this project include:</p>
diff --git a/another-fixed-page/index.html b/another-fixed-page/index.html
index 16ea3bc..5e5b32c 100644
--- a/another-fixed-page/index.html
+++ b/another-fixed-page/index.html
@@ -53,8 +53,6 @@
-
-
<a class="sidebar-nav-item " href="http://tummychow.github.io/lanyon-hugo/about/">About</a>
diff --git a/fixed/index.html b/fixed/index.html
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/fixed/index.html
diff --git a/fixed/index.xml b/fixed/index.xml
index c70e330..207e2cb 100644
--- a/fixed/index.xml
+++ b/fixed/index.xml
@@ -2,19 +2,17 @@
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title> </title>
- <link>http://tummychow.github.io/lanyon-hugo/fixed/index.xml</link>
+ <link>http://tummychow.github.io/lanyon-hugo/fixed/</link>
<language>en-us</language>
<author>Mark Otto</author>
<rights>(C) 2014</rights>
- <updated>2008-01-01 00:00:00 &#43;0000 UTC</updated>
+ <updated>0001-01-01 00:00:00 &#43;0000 UTC</updated>
-
-
</channel>
</rss>
diff --git a/index.html b/index.html
index d1e9045..d2d51fa 100644
--- a/index.html
+++ b/index.html
@@ -53,8 +53,6 @@
-
-
<a class="sidebar-nav-item " href="http://tummychow.github.io/lanyon-hugo/about/">About</a>
@@ -90,17 +88,17 @@
+
<div class="posts">
-
- <div class="post">
+ <div class="post">
<h1 class="post-title"><a href="http://tummychow.github.io/lanyon-hugo/2014/01/02/introducing-lanyon/">Introducing Lanyon</a></h1>
<span class="post-date">Jan 2 2014</span>
<p>Lanyon is an unassuming <a href="http://jekyllrb.com">Jekyll</a> theme that places content first by tucking away navigation in a hidden drawer. It&rsquo;s based on <a href="http://getpoole.com">Poole</a>, the Jekyll butler.</p>
-<h3 id="toc_0">Built on Poole</h3>
+<h3 id="built-on-poole:3fbbb50789f1ac58c0e5da0cc6426f3f">Built on Poole</h3>
<p>Poole is the Jekyll Butler, serving as an upstanding and effective foundation for Jekyll themes by <a href="https://twitter.com/mdo">@mdo</a>. Poole, and every theme built on it (like Lanyon here) includes the following:</p>
@@ -113,7 +111,7 @@
<li>Syntax highlighting, courtesy Pygments (the Python-based code snippet highlighter)</li>
</ul>
-<h3 id="toc_1">Lanyon features</h3>
+<h3 id="lanyon-features:3fbbb50789f1ac58c0e5da0cc6426f3f">Lanyon features</h3>
<p>In addition to the features of Poole, Lanyon adds the following:</p>
@@ -126,21 +124,19 @@
<p><a href="https://github.com/poole/lanyon#readme">Head to the readme</a> to learn more.</p>
-<h3 id="toc_2">Browser support</h3>
+<h3 id="browser-support:3fbbb50789f1ac58c0e5da0cc6426f3f">Browser support</h3>
<p>Lanyon is by preference a forward-thinking project. In addition to the latest versions of Chrome, Safari (mobile and desktop), and Firefox, it is only compatible with Internet Explorer 9 and above.</p>
-<h3 id="toc_3">Download</h3>
+<h3 id="download:3fbbb50789f1ac58c0e5da0cc6426f3f">Download</h3>
<p>Lanyon is developed on and hosted with GitHub. Head to the <a href="https://github.com/poole/lanyon">GitHub repository</a> for downloads, bug reports, and features requests.</p>
<p>Thanks!</p>
- </div>
-
+ </div>
-
- <div class="post">
+ <div class="post">
<h1 class="post-title"><a href="http://tummychow.github.io/lanyon-hugo/2014/01/01/example-content/">Example content</a></h1>
<span class="post-date">Jan 1 2014</span>
@@ -157,7 +153,7 @@
<p>Etiam porta <strong>sem malesuada magna</strong> mollis euismod. Cras mattis consectetur purus sit amet fermentum. Aenean lacinia bibendum nulla sed consectetur.</p>
-<h2 id="toc_0">Inline HTML elements</h2>
+<h2 id="inline-html-elements:359d948725c4841afd7b76bfdf6a18a3">Inline HTML elements</h2>
<p>HTML defines a long list of available inline tags, a complete list of which can be found on the <a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Element">Mozilla Developer Network</a>.</p>
@@ -172,27 +168,28 @@
<p>Most of these elements are styled by browsers with few modifications on our part.</p>
-<h2 id="toc_1">Heading</h2>
+<h2 id="heading:359d948725c4841afd7b76bfdf6a18a3">Heading</h2>
<p>Vivamus sagittis lacus vel augue rutrum faucibus dolor auctor. Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Morbi leo risus, porta ac consectetur ac, vestibulum at eros.</p>
-<h3 id="toc_2">Code</h3>
+<h3 id="code:359d948725c4841afd7b76bfdf6a18a3">Code</h3>
<p>Cum sociis natoque penatibus et magnis dis <code>code element</code> montes, nascetur ridiculus mus.</p>
-<div class="highlight" style="background: #272822"><pre style="line-height: 125%"><span style="color: #75715e">// Example can be run directly in your JavaScript console</span>
+<div class="highlight"><pre><code class="language-js" data-lang="js"><span class="c1">// Example can be run directly in your JavaScript console</span>
-<span style="color: #75715e">// Create a function that takes two arguments and returns the sum of those arguments</span>
-<span style="color: #66d9ef">var</span> <span style="color: #a6e22e">adder</span> <span style="color: #f92672">=</span> <span style="color: #66d9ef">new</span> <span style="color: #f8f8f2">Function(</span><span style="color: #e6db74">&quot;a&quot;</span><span style="color: #f8f8f2">,</span> <span style="color: #e6db74">&quot;b&quot;</span><span style="color: #f8f8f2">,</span> <span style="color: #e6db74">&quot;return a + b&quot;</span><span style="color: #f8f8f2">);</span>
+<span class="c1">// Create a function that takes two arguments and returns the sum of those arguments</span>
+<span class="kd">var</span> <span class="nx">adder</span> <span class="o">=</span> <span class="k">new</span> <span class="nb">Function</span><span class="p">(</span><span class="s2">&quot;a&quot;</span><span class="p">,</span> <span class="s2">&quot;b&quot;</span><span class="p">,</span> <span class="s2">&quot;return a + b&quot;</span><span class="p">);</span>
+
+<span class="c1">// Call the function</span>
+<span class="nx">adder</span><span class="p">(</span><span class="mi">2</span><span class="p">,</span> <span class="mi">6</span><span class="p">);</span>
+<span class="c1">// &gt; 8</span>
+</code></pre></div>
-<span style="color: #75715e">// Call the function</span>
-<span style="color: #a6e22e">adder</span><span style="color: #f8f8f2">(</span><span style="color: #ae81ff">2</span><span style="color: #f8f8f2">,</span> <span style="color: #ae81ff">6</span><span style="color: #f8f8f2">);</span>
-<span style="color: #75715e">// &gt; 8</span>
-</pre></div>
<p>Aenean lacinia bibendum nulla sed consectetur. Etiam porta sem malesuada magna mollis euismod. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa.</p>
-<h3 id="toc_3">Lists</h3>
+<h3 id="lists:359d948725c4841afd7b76bfdf6a18a3">Lists</h3>
<p>Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Aenean lacinia bibendum nulla sed consectetur. Etiam porta sem malesuada magna mollis euismod. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus.</p>
@@ -225,7 +222,7 @@
<p>Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Morbi leo risus, porta ac consectetur ac, vestibulum at eros. Nullam quis risus eget urna mollis ornare vel eu leo.</p>
-<h3 id="toc_4">Tables</h3>
+<h3 id="tables:359d948725c4841afd7b76bfdf6a18a3">Tables</h3>
<p>Aenean lacinia bibendum nulla sed consectetur. Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
@@ -269,11 +266,9 @@
<p>Want to see something else added? <a href="https://github.com/poole/poole/issues/new">Open an issue.</a></p>
- </div>
-
+ </div>
-
- <div class="post">
+ <div class="post">
<h1 class="post-title"><a href="http://tummychow.github.io/lanyon-hugo/2013/12/31/whats-jekyll/">What&#39;s Jekyll?</a></h1>
<span class="post-date">Dec 31 2013</span>
<p><a href="http://jekyllrb.com">Jekyll</a> is a static site generator, an open-source tool for creating simple yet powerful websites of all shapes and sizes. From <a href="https://github.com/mojombo/jekyll/blob/master/README.markdown">the project&rsquo;s readme</a>:</p>
@@ -286,22 +281,17 @@
<p>Find out more by <a href="https://github.com/mojombo/jekyll">visiting the project on GitHub</a>.</p>
- </div>
-
-
-
-
-
+ </div>
</div>
<div class="pagination">
- <span class="pagination-item older">Older</span>
+ <span class="pagination-item older">Older</span>
- <span class="pagination-item newer">Newer</span>
+ <span class="pagination-item newer">Newer</span>
</div>
diff --git a/index.xml b/index.xml
index ac4fa8a..67de760 100644
--- a/index.xml
+++ b/index.xml
@@ -2,7 +2,7 @@
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title> </title>
- <link>http://tummychow.github.io/lanyon-hugo/index.xml</link>
+ <link>http://tummychow.github.io/lanyon-hugo/</link>
<language>en-us</language>
<author>Mark Otto</author>
<rights>(C) 2014</rights>
@@ -20,12 +20,12 @@
&lt;p&gt;Lanyon is an unassuming &lt;a href=&#34;http://jekyllrb.com&#34;&gt;Jekyll&lt;/a&gt; theme that places content first by tucking away navigation in a hidden drawer. It&amp;rsquo;s based on &lt;a href=&#34;http://getpoole.com&#34;&gt;Poole&lt;/a&gt;, the Jekyll butler.&lt;/p&gt;
-&lt;h3 id=&#34;toc_0&#34;&gt;Built on Poole&lt;/h3&gt;
+&lt;h3 id=&#34;built-on-poole:3fbbb50789f1ac58c0e5da0cc6426f3f&#34;&gt;Built on Poole&lt;/h3&gt;
&lt;p&gt;Poole is the Jekyll Butler, serving as an upstanding and effective foundation for Jekyll themes by &lt;a href=&#34;https://twitter.com/mdo&#34;&gt;@mdo&lt;/a&gt;. Poole, and every theme built on it (like Lanyon here) includes the following:&lt;/p&gt;
&lt;ul&gt;
-&lt;li&gt;Complete Jekyll setup included (layouts, config, &lt;a href=&#34;/404&#34;&gt;404&lt;/a&gt;, &lt;a href=&#34;/index.xml&#34;&gt;RSS feed&lt;/a&gt;, posts, and &lt;a href=&#34;/about&#34;&gt;example page&lt;/a&gt;)&lt;/li&gt;
+&lt;li&gt;Complete Jekyll setup included (layouts, config, &lt;a href=&#34;http://tummychow.github.io/lanyon-hugo/404&#34;&gt;404&lt;/a&gt;, &lt;a href=&#34;http://tummychow.github.io/lanyon-hugo/index.xml&#34;&gt;RSS feed&lt;/a&gt;, posts, and &lt;a href=&#34;http://tummychow.github.io/lanyon-hugo/about&#34;&gt;example page&lt;/a&gt;)&lt;/li&gt;
&lt;li&gt;Mobile friendly design and development&lt;/li&gt;
&lt;li&gt;Easily scalable text and component sizing with &lt;code&gt;rem&lt;/code&gt; units in the CSS&lt;/li&gt;
&lt;li&gt;Support for a wide gamut of HTML elements&lt;/li&gt;
@@ -33,7 +33,7 @@
&lt;li&gt;Syntax highlighting, courtesy Pygments (the Python-based code snippet highlighter)&lt;/li&gt;
&lt;/ul&gt;
-&lt;h3 id=&#34;toc_1&#34;&gt;Lanyon features&lt;/h3&gt;
+&lt;h3 id=&#34;lanyon-features:3fbbb50789f1ac58c0e5da0cc6426f3f&#34;&gt;Lanyon features&lt;/h3&gt;
&lt;p&gt;In addition to the features of Poole, Lanyon adds the following:&lt;/p&gt;
@@ -46,11 +46,11 @@
&lt;p&gt;&lt;a href=&#34;https://github.com/poole/lanyon#readme&#34;&gt;Head to the readme&lt;/a&gt; to learn more.&lt;/p&gt;
-&lt;h3 id=&#34;toc_2&#34;&gt;Browser support&lt;/h3&gt;
+&lt;h3 id=&#34;browser-support:3fbbb50789f1ac58c0e5da0cc6426f3f&#34;&gt;Browser support&lt;/h3&gt;
&lt;p&gt;Lanyon is by preference a forward-thinking project. In addition to the latest versions of Chrome, Safari (mobile and desktop), and Firefox, it is only compatible with Internet Explorer 9 and above.&lt;/p&gt;
-&lt;h3 id=&#34;toc_3&#34;&gt;Download&lt;/h3&gt;
+&lt;h3 id=&#34;download:3fbbb50789f1ac58c0e5da0cc6426f3f&#34;&gt;Download&lt;/h3&gt;
&lt;p&gt;Lanyon is developed on and hosted with GitHub. Head to the &lt;a href=&#34;https://github.com/poole/lanyon&#34;&gt;GitHub repository&lt;/a&gt; for downloads, bug reports, and features requests.&lt;/p&gt;
@@ -80,7 +80,7 @@
&lt;p&gt;Etiam porta &lt;strong&gt;sem malesuada magna&lt;/strong&gt; mollis euismod. Cras mattis consectetur purus sit amet fermentum. Aenean lacinia bibendum nulla sed consectetur.&lt;/p&gt;
-&lt;h2 id=&#34;toc_0&#34;&gt;Inline HTML elements&lt;/h2&gt;
+&lt;h2 id=&#34;inline-html-elements:359d948725c4841afd7b76bfdf6a18a3&#34;&gt;Inline HTML elements&lt;/h2&gt;
&lt;p&gt;HTML defines a long list of available inline tags, a complete list of which can be found on the &lt;a href=&#34;https://developer.mozilla.org/en-US/docs/Web/HTML/Element&#34;&gt;Mozilla Developer Network&lt;/a&gt;.&lt;/p&gt;
@@ -95,27 +95,28 @@
&lt;p&gt;Most of these elements are styled by browsers with few modifications on our part.&lt;/p&gt;
-&lt;h2 id=&#34;toc_1&#34;&gt;Heading&lt;/h2&gt;
+&lt;h2 id=&#34;heading:359d948725c4841afd7b76bfdf6a18a3&#34;&gt;Heading&lt;/h2&gt;
&lt;p&gt;Vivamus sagittis lacus vel augue rutrum faucibus dolor auctor. Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Morbi leo risus, porta ac consectetur ac, vestibulum at eros.&lt;/p&gt;
-&lt;h3 id=&#34;toc_2&#34;&gt;Code&lt;/h3&gt;
+&lt;h3 id=&#34;code:359d948725c4841afd7b76bfdf6a18a3&#34;&gt;Code&lt;/h3&gt;
&lt;p&gt;Cum sociis natoque penatibus et magnis dis &lt;code&gt;code element&lt;/code&gt; montes, nascetur ridiculus mus.&lt;/p&gt;
-&lt;div class=&#34;highlight&#34; style=&#34;background: #272822&#34;&gt;&lt;pre style=&#34;line-height: 125%&#34;&gt;&lt;span style=&#34;color: #75715e&#34;&gt;// Example can be run directly in your JavaScript console&lt;/span&gt;
+&lt;div class=&#34;highlight&#34;&gt;&lt;pre&gt;&lt;code class=&#34;language-js&#34; data-lang=&#34;js&#34;&gt;&lt;span class=&#34;c1&#34;&gt;// Example can be run directly in your JavaScript console&lt;/span&gt;
-&lt;span style=&#34;color: #75715e&#34;&gt;// Create a function that takes two arguments and returns the sum of those arguments&lt;/span&gt;
-&lt;span style=&#34;color: #66d9ef&#34;&gt;var&lt;/span&gt; &lt;span style=&#34;color: #a6e22e&#34;&gt;adder&lt;/span&gt; &lt;span style=&#34;color: #f92672&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color: #66d9ef&#34;&gt;new&lt;/span&gt; &lt;span style=&#34;color: #f8f8f2&#34;&gt;Function(&lt;/span&gt;&lt;span style=&#34;color: #e6db74&#34;&gt;&amp;quot;a&amp;quot;&lt;/span&gt;&lt;span style=&#34;color: #f8f8f2&#34;&gt;,&lt;/span&gt; &lt;span style=&#34;color: #e6db74&#34;&gt;&amp;quot;b&amp;quot;&lt;/span&gt;&lt;span style=&#34;color: #f8f8f2&#34;&gt;,&lt;/span&gt; &lt;span style=&#34;color: #e6db74&#34;&gt;&amp;quot;return a + b&amp;quot;&lt;/span&gt;&lt;span style=&#34;color: #f8f8f2&#34;&gt;);&lt;/span&gt;
+&lt;span class=&#34;c1&#34;&gt;// Create a function that takes two arguments and returns the sum of those arguments&lt;/span&gt;
+&lt;span class=&#34;kd&#34;&gt;var&lt;/span&gt; &lt;span class=&#34;nx&#34;&gt;adder&lt;/span&gt; &lt;span class=&#34;o&#34;&gt;=&lt;/span&gt; &lt;span class=&#34;k&#34;&gt;new&lt;/span&gt; &lt;span class=&#34;nb&#34;&gt;Function&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;s2&#34;&gt;&amp;quot;a&amp;quot;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt; &lt;span class=&#34;s2&#34;&gt;&amp;quot;b&amp;quot;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt; &lt;span class=&#34;s2&#34;&gt;&amp;quot;return a + b&amp;quot;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;);&lt;/span&gt;
+
+&lt;span class=&#34;c1&#34;&gt;// Call the function&lt;/span&gt;
+&lt;span class=&#34;nx&#34;&gt;adder&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;mi&#34;&gt;2&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt; &lt;span class=&#34;mi&#34;&gt;6&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;);&lt;/span&gt;
+&lt;span class=&#34;c1&#34;&gt;// &amp;gt; 8&lt;/span&gt;
+&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;
-&lt;span style=&#34;color: #75715e&#34;&gt;// Call the function&lt;/span&gt;
-&lt;span style=&#34;color: #a6e22e&#34;&gt;adder&lt;/span&gt;&lt;span style=&#34;color: #f8f8f2&#34;&gt;(&lt;/span&gt;&lt;span style=&#34;color: #ae81ff&#34;&gt;2&lt;/span&gt;&lt;span style=&#34;color: #f8f8f2&#34;&gt;,&lt;/span&gt; &lt;span style=&#34;color: #ae81ff&#34;&gt;6&lt;/span&gt;&lt;span style=&#34;color: #f8f8f2&#34;&gt;);&lt;/span&gt;
-&lt;span style=&#34;color: #75715e&#34;&gt;// &amp;gt; 8&lt;/span&gt;
-&lt;/pre&gt;&lt;/div&gt;
&lt;p&gt;Aenean lacinia bibendum nulla sed consectetur. Etiam porta sem malesuada magna mollis euismod. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa.&lt;/p&gt;
-&lt;h3 id=&#34;toc_3&#34;&gt;Lists&lt;/h3&gt;
+&lt;h3 id=&#34;lists:359d948725c4841afd7b76bfdf6a18a3&#34;&gt;Lists&lt;/h3&gt;
&lt;p&gt;Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Aenean lacinia bibendum nulla sed consectetur. Etiam porta sem malesuada magna mollis euismod. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus.&lt;/p&gt;
@@ -148,7 +149,7 @@
&lt;p&gt;Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Morbi leo risus, porta ac consectetur ac, vestibulum at eros. Nullam quis risus eget urna mollis ornare vel eu leo.&lt;/p&gt;
-&lt;h3 id=&#34;toc_4&#34;&gt;Tables&lt;/h3&gt;
+&lt;h3 id=&#34;tables:359d948725c4841afd7b76bfdf6a18a3&#34;&gt;Tables&lt;/h3&gt;
&lt;p&gt;Aenean lacinia bibendum nulla sed consectetur. Lorem ipsum dolor sit amet, consectetur adipiscing elit.&lt;/p&gt;
@@ -219,8 +220,6 @@
-
-
</channel>
</rss>
diff --git a/page/1/index.html b/page/1/index.html
new file mode 100644
index 0000000..f42f145
--- /dev/null
+++ b/page/1/index.html
@@ -0,0 +1 @@
+<!DOCTYPE html><html><head><link rel="canonical" href="http://tummychow.github.io/lanyon-hugo/"/><meta http-equiv="content-type" content="text/html; charset=utf-8" /><meta http-equiv="refresh" content="0;url=http://tummychow.github.io/lanyon-hugo/" /></head></html> \ No newline at end of file
diff --git a/post/index.html b/post/index.html
index 557cce4..1a0e7af 100644
--- a/post/index.html
+++ b/post/index.html
@@ -53,8 +53,6 @@
-
-
<a class="sidebar-nav-item " href="http://tummychow.github.io/lanyon-hugo/about/">About</a>
diff --git a/post/index.xml b/post/index.xml
index 8553681..63c946c 100644
--- a/post/index.xml
+++ b/post/index.xml
@@ -2,7 +2,7 @@
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title> </title>
- <link>http://tummychow.github.io/lanyon-hugo/post/index.xml</link>
+ <link>http://tummychow.github.io/lanyon-hugo/post/</link>
<language>en-us</language>
<author>Mark Otto</author>
<rights>(C) 2014</rights>
@@ -20,12 +20,12 @@
&lt;p&gt;Lanyon is an unassuming &lt;a href=&#34;http://jekyllrb.com&#34;&gt;Jekyll&lt;/a&gt; theme that places content first by tucking away navigation in a hidden drawer. It&amp;rsquo;s based on &lt;a href=&#34;http://getpoole.com&#34;&gt;Poole&lt;/a&gt;, the Jekyll butler.&lt;/p&gt;
-&lt;h3 id=&#34;toc_0&#34;&gt;Built on Poole&lt;/h3&gt;
+&lt;h3 id=&#34;built-on-poole:3fbbb50789f1ac58c0e5da0cc6426f3f&#34;&gt;Built on Poole&lt;/h3&gt;
&lt;p&gt;Poole is the Jekyll Butler, serving as an upstanding and effective foundation for Jekyll themes by &lt;a href=&#34;https://twitter.com/mdo&#34;&gt;@mdo&lt;/a&gt;. Poole, and every theme built on it (like Lanyon here) includes the following:&lt;/p&gt;
&lt;ul&gt;
-&lt;li&gt;Complete Jekyll setup included (layouts, config, &lt;a href=&#34;/404&#34;&gt;404&lt;/a&gt;, &lt;a href=&#34;/index.xml&#34;&gt;RSS feed&lt;/a&gt;, posts, and &lt;a href=&#34;/about&#34;&gt;example page&lt;/a&gt;)&lt;/li&gt;
+&lt;li&gt;Complete Jekyll setup included (layouts, config, &lt;a href=&#34;http://tummychow.github.io/lanyon-hugo/404&#34;&gt;404&lt;/a&gt;, &lt;a href=&#34;http://tummychow.github.io/lanyon-hugo/index.xml&#34;&gt;RSS feed&lt;/a&gt;, posts, and &lt;a href=&#34;http://tummychow.github.io/lanyon-hugo/about&#34;&gt;example page&lt;/a&gt;)&lt;/li&gt;
&lt;li&gt;Mobile friendly design and development&lt;/li&gt;
&lt;li&gt;Easily scalable text and component sizing with &lt;code&gt;rem&lt;/code&gt; units in the CSS&lt;/li&gt;
&lt;li&gt;Support for a wide gamut of HTML elements&lt;/li&gt;
@@ -33,7 +33,7 @@
&lt;li&gt;Syntax highlighting, courtesy Pygments (the Python-based code snippet highlighter)&lt;/li&gt;
&lt;/ul&gt;
-&lt;h3 id=&#34;toc_1&#34;&gt;Lanyon features&lt;/h3&gt;
+&lt;h3 id=&#34;lanyon-features:3fbbb50789f1ac58c0e5da0cc6426f3f&#34;&gt;Lanyon features&lt;/h3&gt;
&lt;p&gt;In addition to the features of Poole, Lanyon adds the following:&lt;/p&gt;
@@ -46,11 +46,11 @@
&lt;p&gt;&lt;a href=&#34;https://github.com/poole/lanyon#readme&#34;&gt;Head to the readme&lt;/a&gt; to learn more.&lt;/p&gt;
-&lt;h3 id=&#34;toc_2&#34;&gt;Browser support&lt;/h3&gt;
+&lt;h3 id=&#34;browser-support:3fbbb50789f1ac58c0e5da0cc6426f3f&#34;&gt;Browser support&lt;/h3&gt;
&lt;p&gt;Lanyon is by preference a forward-thinking project. In addition to the latest versions of Chrome, Safari (mobile and desktop), and Firefox, it is only compatible with Internet Explorer 9 and above.&lt;/p&gt;
-&lt;h3 id=&#34;toc_3&#34;&gt;Download&lt;/h3&gt;
+&lt;h3 id=&#34;download:3fbbb50789f1ac58c0e5da0cc6426f3f&#34;&gt;Download&lt;/h3&gt;
&lt;p&gt;Lanyon is developed on and hosted with GitHub. Head to the &lt;a href=&#34;https://github.com/poole/lanyon&#34;&gt;GitHub repository&lt;/a&gt; for downloads, bug reports, and features requests.&lt;/p&gt;
@@ -80,7 +80,7 @@
&lt;p&gt;Etiam porta &lt;strong&gt;sem malesuada magna&lt;/strong&gt; mollis euismod. Cras mattis consectetur purus sit amet fermentum. Aenean lacinia bibendum nulla sed consectetur.&lt;/p&gt;
-&lt;h2 id=&#34;toc_0&#34;&gt;Inline HTML elements&lt;/h2&gt;
+&lt;h2 id=&#34;inline-html-elements:359d948725c4841afd7b76bfdf6a18a3&#34;&gt;Inline HTML elements&lt;/h2&gt;
&lt;p&gt;HTML defines a long list of available inline tags, a complete list of which can be found on the &lt;a href=&#34;https://developer.mozilla.org/en-US/docs/Web/HTML/Element&#34;&gt;Mozilla Developer Network&lt;/a&gt;.&lt;/p&gt;
@@ -95,27 +95,28 @@
&lt;p&gt;Most of these elements are styled by browsers with few modifications on our part.&lt;/p&gt;
-&lt;h2 id=&#34;toc_1&#34;&gt;Heading&lt;/h2&gt;
+&lt;h2 id=&#34;heading:359d948725c4841afd7b76bfdf6a18a3&#34;&gt;Heading&lt;/h2&gt;
&lt;p&gt;Vivamus sagittis lacus vel augue rutrum faucibus dolor auctor. Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Morbi leo risus, porta ac consectetur ac, vestibulum at eros.&lt;/p&gt;
-&lt;h3 id=&#34;toc_2&#34;&gt;Code&lt;/h3&gt;
+&lt;h3 id=&#34;code:359d948725c4841afd7b76bfdf6a18a3&#34;&gt;Code&lt;/h3&gt;
&lt;p&gt;Cum sociis natoque penatibus et magnis dis &lt;code&gt;code element&lt;/code&gt; montes, nascetur ridiculus mus.&lt;/p&gt;
-&lt;div class=&#34;highlight&#34; style=&#34;background: #272822&#34;&gt;&lt;pre style=&#34;line-height: 125%&#34;&gt;&lt;span style=&#34;color: #75715e&#34;&gt;// Example can be run directly in your JavaScript console&lt;/span&gt;
+&lt;div class=&#34;highlight&#34;&gt;&lt;pre&gt;&lt;code class=&#34;language-js&#34; data-lang=&#34;js&#34;&gt;&lt;span class=&#34;c1&#34;&gt;// Example can be run directly in your JavaScript console&lt;/span&gt;
-&lt;span style=&#34;color: #75715e&#34;&gt;// Create a function that takes two arguments and returns the sum of those arguments&lt;/span&gt;
-&lt;span style=&#34;color: #66d9ef&#34;&gt;var&lt;/span&gt; &lt;span style=&#34;color: #a6e22e&#34;&gt;adder&lt;/span&gt; &lt;span style=&#34;color: #f92672&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color: #66d9ef&#34;&gt;new&lt;/span&gt; &lt;span style=&#34;color: #f8f8f2&#34;&gt;Function(&lt;/span&gt;&lt;span style=&#34;color: #e6db74&#34;&gt;&amp;quot;a&amp;quot;&lt;/span&gt;&lt;span style=&#34;color: #f8f8f2&#34;&gt;,&lt;/span&gt; &lt;span style=&#34;color: #e6db74&#34;&gt;&amp;quot;b&amp;quot;&lt;/span&gt;&lt;span style=&#34;color: #f8f8f2&#34;&gt;,&lt;/span&gt; &lt;span style=&#34;color: #e6db74&#34;&gt;&amp;quot;return a + b&amp;quot;&lt;/span&gt;&lt;span style=&#34;color: #f8f8f2&#34;&gt;);&lt;/span&gt;
+&lt;span class=&#34;c1&#34;&gt;// Create a function that takes two arguments and returns the sum of those arguments&lt;/span&gt;
+&lt;span class=&#34;kd&#34;&gt;var&lt;/span&gt; &lt;span class=&#34;nx&#34;&gt;adder&lt;/span&gt; &lt;span class=&#34;o&#34;&gt;=&lt;/span&gt; &lt;span class=&#34;k&#34;&gt;new&lt;/span&gt; &lt;span class=&#34;nb&#34;&gt;Function&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;s2&#34;&gt;&amp;quot;a&amp;quot;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt; &lt;span class=&#34;s2&#34;&gt;&amp;quot;b&amp;quot;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt; &lt;span class=&#34;s2&#34;&gt;&amp;quot;return a + b&amp;quot;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;);&lt;/span&gt;
+
+&lt;span class=&#34;c1&#34;&gt;// Call the function&lt;/span&gt;
+&lt;span class=&#34;nx&#34;&gt;adder&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;mi&#34;&gt;2&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt; &lt;span class=&#34;mi&#34;&gt;6&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;);&lt;/span&gt;
+&lt;span class=&#34;c1&#34;&gt;// &amp;gt; 8&lt;/span&gt;
+&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;
-&lt;span style=&#34;color: #75715e&#34;&gt;// Call the function&lt;/span&gt;
-&lt;span style=&#34;color: #a6e22e&#34;&gt;adder&lt;/span&gt;&lt;span style=&#34;color: #f8f8f2&#34;&gt;(&lt;/span&gt;&lt;span style=&#34;color: #ae81ff&#34;&gt;2&lt;/span&gt;&lt;span style=&#34;color: #f8f8f2&#34;&gt;,&lt;/span&gt; &lt;span style=&#34;color: #ae81ff&#34;&gt;6&lt;/span&gt;&lt;span style=&#34;color: #f8f8f2&#34;&gt;);&lt;/span&gt;
-&lt;span style=&#34;color: #75715e&#34;&gt;// &amp;gt; 8&lt;/span&gt;
-&lt;/pre&gt;&lt;/div&gt;
&lt;p&gt;Aenean lacinia bibendum nulla sed consectetur. Etiam porta sem malesuada magna mollis euismod. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa.&lt;/p&gt;
-&lt;h3 id=&#34;toc_3&#34;&gt;Lists&lt;/h3&gt;
+&lt;h3 id=&#34;lists:359d948725c4841afd7b76bfdf6a18a3&#34;&gt;Lists&lt;/h3&gt;
&lt;p&gt;Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Aenean lacinia bibendum nulla sed consectetur. Etiam porta sem malesuada magna mollis euismod. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus.&lt;/p&gt;
@@ -148,7 +149,7 @@
&lt;p&gt;Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Morbi leo risus, porta ac consectetur ac, vestibulum at eros. Nullam quis risus eget urna mollis ornare vel eu leo.&lt;/p&gt;
-&lt;h3 id=&#34;toc_4&#34;&gt;Tables&lt;/h3&gt;
+&lt;h3 id=&#34;tables:359d948725c4841afd7b76bfdf6a18a3&#34;&gt;Tables&lt;/h3&gt;
&lt;p&gt;Aenean lacinia bibendum nulla sed consectetur. Lorem ipsum dolor sit amet, consectetur adipiscing elit.&lt;/p&gt;
diff --git a/sitemap.xml b/sitemap.xml
new file mode 100644
index 0000000..a266254
--- /dev/null
+++ b/sitemap.xml
@@ -0,0 +1,33 @@
+<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
+<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
+
+ <url>
+ <loc>http://tummychow.github.io/lanyon-hugo/</loc>
+ <lastmod>2014-01-02T00:00:00+00:00</lastmod>
+ <priority>0</priority>
+ </url>
+
+ <url>
+ <loc>http://tummychow.github.io/lanyon-hugo/2014/01/02/introducing-lanyon/</loc>
+ <lastmod>2014-01-02T00:00:00+00:00</lastmod>
+ </url>
+
+ <url>
+ <loc>http://tummychow.github.io/lanyon-hugo/2014/01/01/example-content/</loc>
+ <lastmod>2014-01-01T00:00:00+00:00</lastmod>
+ </url>
+
+ <url>
+ <loc>http://tummychow.github.io/lanyon-hugo/2013/12/31/whats-jekyll/</loc>
+ <lastmod>2013-12-31T00:00:00+00:00</lastmod>
+ </url>
+
+ <url>
+ <loc>http://tummychow.github.io/lanyon-hugo/about/</loc>
+ </url>
+
+ <url>
+ <loc>http://tummychow.github.io/lanyon-hugo/another-fixed-page/</loc>
+ </url>
+
+</urlset> \ No newline at end of file