Markdown generated html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8" /> | |
<title>Manual Examples</title> | |
<link rel="stylesheet" href="../../../theme/css/main.css" /> | |
<!--[if IE]> | |
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script> | |
<![endif]--> | |
</head> | |
<body id="index" class="home"> | |
<header id="banner" class="body"> | |
<h1><a href="../../../">Jason Antman's Blog </a></h1> | |
<nav><ul> | |
<li><a href="../../../pages/about.html">About</a></li> | |
<li><a href="../../../pages/copyright.html">Copyright</a></li> | |
<li><a href="../../../pages/privacy-policy.html">Privacy Policy</a></li> | |
<li class="active"><a href="../../../category/foo.html">Foo</a></li> | |
<li><a href="../../../category/tech-howtos.html">Tech HowTos</a></li> | |
</ul></nav> | |
</header><!-- /#banner --> | |
<section id="content" class="body"> | |
<article> | |
<header> | |
<h1 class="entry-title"> | |
<a href="../../../2014/01/manual-examples/" rel="bookmark" | |
title="Permalink to Manual Examples">Manual Examples</a></h1> | |
</header> | |
<div class="entry-content"> | |
<footer class="post-info"> | |
<abbr class="published" title="2014-01-19T06:00:00"> | |
Sun 19 January 2014 | |
</abbr> | |
<address class="vcard author"> | |
By <a class="url fn" href="../../../author/admin.html">admin</a> | |
</address> | |
<p>In <a href="../../../category/foo.html">Foo</a>. </p> | |
<p>tags: <a href="../../../tag/foo.html">foo</a></p> | |
</footer><!-- /.post-info --> <p>These are some manual examples…</p> | |
<p>A fenced code block of Python:</p> | |
<div class="codehilite"><pre><span class="k">print</span><span class="p">(</span><span class="s">"foo"</span><span class="p">)</span> | |
<span class="k">print</span><span class="p">(</span><span class="n">bar</span><span class="p">)</span> | |
</pre></div> | |
<p>An 8-space indented block:</p> | |
<div class="codehilite"><pre> :::python | |
print("foo") | |
bar = 3 + 7 | |
print(bar) | |
</pre></div> | |
<p>That’s it for now.</p> | |
</div><!-- /.entry-content --> | |
</article> | |
</section> | |
<section id="extras" class="body"> | |
<div class="blogroll"> | |
<h2>blogroll</h2> | |
<ul> | |
<li><a href="http://getpelican.com/">Pelican</a></li> | |
<li><a href="http://python.org/">Python.org</a></li> | |
<li><a href="http://jinja.pocoo.org/">Jinja2</a></li> | |
<li><a href="#">You can modify those links in your config file</a></li> | |
</ul> | |
</div><!-- /.blogroll --> | |
<div class="social"> | |
<h2>social</h2> | |
<ul> | |
<li><a href="#">You can add links in your config file</a></li> | |
<li><a href="#">Another social link</a></li> | |
</ul> | |
</div><!-- /.social --> | |
</section><!-- /#extras --> | |
<footer id="contentinfo" class="body"> | |
<address id="about" class="vcard body"> | |
Proudly powered by <a href="http://getpelican.com/">Pelican</a>, which takes great advantage of <a href="http://python.org">Python</a>. | |
</address><!-- /#about --> | |
<p>The theme is by <a href="http://coding.smashingmagazine.com/2009/08/04/designing-a-html-5-layout-from-scratch/">Smashing Magazine</a>, thanks!</p> | |
</footer><!-- /#contentinfo --> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment