Commit 7f2e545f authored by Luca Cinquini's avatar Luca Cinquini
Browse files

Removing docs/ for now.

parent ddf15da5
Loading
Loading
Loading
Loading

docs/_config.yml

deleted100644 → 0
+0 −4
Original line number Diff line number Diff line
theme: jekyll-theme-cayman
name: Hank Quinlan, Horrible Cop
markdown: kramdown
#permalink: /:year/:month/:day/:title

docs/_layouts/default.html

deleted100644 → 0
+0 −29
Original line number Diff line number Diff line
<!DOCTYPE html>
	<html>
		<head>
			<title>{{ page.title }}</title>
			<!-- link to main stylesheet -->
			<link rel="stylesheet" type="text/css" href="/esgf-docker/css/main.css">
		</head>
		<body>
			<nav>
	    		<ul>
	        		<li><a href="/">Home</a></li>
		        	<li><a href="/esgf-docker/about">About</a></li>
	        		<li><a href="/esgf-docker/cv">CV</a></li>
	        		<li><a href="/esgf-docker/blog">Blog</a></li>
	    		</ul>
			</nav>
			<div class="container">
			
			{{ content }}
			
			</div><!-- /.container -->
			<footer>
	    		<ul>
	        		<li><a href="mailto:hankquinlanhub@gmail.com">email</a></li>
	        		<li><a href="https://github.com/hankquinlan">github.com/hankquinlan</a></li>
				</ul>
			</footer>
		</body>
	</html>

docs/_layouts/post.html

deleted100644 → 0
+0 −9
Original line number Diff line number Diff line
---
layout: default
---
<h1>{{ page.title }}</h1>
<p class="meta">{{ page.date | date_to_string }}</p>

<div class="post">
  {{ content }}
</div>
+0 −8
Original line number Diff line number Diff line
---
layout: post
title: "Hank Quinlan, Horrible Cop, Launches Site"
date: 2014-04-30
---


Well, I finally got around to putting this old website together. Neat thing about it - powered by [Jekyll](http://jekyllrb.com) and I can use Markdown to author my posts. It actually is a lot easier than I thought it was going to be.

docs/blog/index.html

deleted100644 → 0
+0 −12
Original line number Diff line number Diff line
---
layout: default
title: Hank Quinlan's Blog
---
	<h1>{{ page.title }}</h1>
	<ul class="posts">

	  {% for post in site.posts %}
	    <li><span>{{ post.date | date_to_string }}</span> » <a href="/esgf-docker{{ post.url }}" title="{{ post.title }}">{{ post.title }}</a></li>
	  {% endfor %}
	</ul>
Loading