fixed links and stuff for sure
This commit is contained in:
parent
cb9a8db60d
commit
e229920fc9
@ -4,6 +4,7 @@ url: http://mediocregopher.com
|
|||||||
lsi: false
|
lsi: false
|
||||||
exclude: [LICENSE, CNAME, README.md, .gitignore]
|
exclude: [LICENSE, CNAME, README.md, .gitignore]
|
||||||
markdown: redcarpet
|
markdown: redcarpet
|
||||||
|
permalink: none
|
||||||
|
|
||||||
# Theme customization - please change from the defaults!
|
# Theme customization - please change from the defaults!
|
||||||
theme:
|
theme:
|
||||||
|
@ -12,15 +12,15 @@
|
|||||||
<link rel="canonical" href="{{ site.url }}{{ page.url | replace:'index.html','' }}" />
|
<link rel="canonical" href="{{ site.url }}{{ page.url | replace:'index.html','' }}" />
|
||||||
|
|
||||||
<link href="//fonts.googleapis.com/css?family=Open+Sans:600,800" rel="stylesheet" type="text/css">
|
<link href="//fonts.googleapis.com/css?family=Open+Sans:600,800" rel="stylesheet" type="text/css">
|
||||||
<link rel="shortcut icon" href="/thoughts/favicon.ico">
|
<link rel="shortcut icon" href="favicon.ico">
|
||||||
<link rel="alternate" type="application/rss+xml" title="{{ site.theme.name }}" href="{{site.url}}/atom.xml" />
|
<link rel="alternate" type="application/rss+xml" title="{{ site.theme.name }}" href="{{site.url}}/atom.xml" />
|
||||||
|
|
||||||
<link rel="stylesheet" href="/thoughts/css/font-awesome.css">
|
<link rel="stylesheet" href="css/font-awesome.css">
|
||||||
<link rel="stylesheet" href="/thoughts/css/base.css">
|
<link rel="stylesheet" href="css/base.css">
|
||||||
<link rel="stylesheet" href="/thoughts/css/skeleton.css">
|
<link rel="stylesheet" href="css/skeleton.css">
|
||||||
<link rel="stylesheet" href="/thoughts/css/screen.css">
|
<link rel="stylesheet" href="css/screen.css">
|
||||||
<link rel="stylesheet" href="/thoughts/css/layout.css">
|
<link rel="stylesheet" href="css/layout.css">
|
||||||
<link rel="stylesheet" href="/thoughts/css/peaksea.css">
|
<link rel="stylesheet" href="css/peaksea.css">
|
||||||
<!--[if IE 7]>
|
<!--[if IE 7]>
|
||||||
<link rel="stylesheet" href="/assets/css/font-awesome-ie7.min.css">
|
<link rel="stylesheet" href="/assets/css/font-awesome-ie7.min.css">
|
||||||
<![endif]-->
|
<![endif]-->
|
||||||
|
@ -4,7 +4,7 @@ layout: default
|
|||||||
|
|
||||||
<p class="meta">
|
<p class="meta">
|
||||||
{{ page.date | date: "%B %d, %Y" }}
|
{{ page.date | date: "%B %d, %Y" }}
|
||||||
<a href="/">
|
<a href="./index.html">
|
||||||
<i class="home icon-home"></i>
|
<i class="home icon-home"></i>
|
||||||
</a>
|
</a>
|
||||||
</p>
|
</p>
|
||||||
|
@ -1,8 +1,6 @@
|
|||||||
---
|
---
|
||||||
layout: post
|
layout: post
|
||||||
title: Generations
|
title: Generations
|
||||||
categories:
|
|
||||||
- crypticio
|
|
||||||
---
|
---
|
||||||
|
|
||||||
A simple file distribution strategy for very large scale, high-availability
|
A simple file distribution strategy for very large scale, high-availability
|
||||||
|
@ -1,8 +1,6 @@
|
|||||||
---
|
---
|
||||||
layout: post
|
layout: post
|
||||||
title: "Erlang, tcp sockets, and active true"
|
title: "Erlang, tcp sockets, and active true"
|
||||||
categories:
|
|
||||||
- erlang
|
|
||||||
---
|
---
|
||||||
|
|
||||||
If you don't know erlang then [you're missing out][0]. If you do know erlang,
|
If you don't know erlang then [you're missing out][0]. If you do know erlang,
|
||||||
|
@ -1,8 +1,6 @@
|
|||||||
---
|
---
|
||||||
layout: post
|
layout: post
|
||||||
title: Go+
|
title: Go+
|
||||||
categories:
|
|
||||||
- go
|
|
||||||
---
|
---
|
||||||
|
|
||||||
Compared to other languages go has some strange behavior regarding its project
|
Compared to other languages go has some strange behavior regarding its project
|
||||||
|
@ -7,7 +7,7 @@ title: Blog Posts
|
|||||||
<h2><i class="icon-bookmark"></i> Posts</h2>
|
<h2><i class="icon-bookmark"></i> Posts</h2>
|
||||||
<ul id="blog-posts" class="posts">
|
<ul id="blog-posts" class="posts">
|
||||||
{% for post in site.posts %}
|
{% for post in site.posts %}
|
||||||
<li><span>{{ post.date | date_to_string }} »</span><a href="/thoughts{{ post.url }}">{{ post.title }}</a></li>
|
<li><span>{{ post.date | date_to_string }} »</span><a href=".{{ post.url }}">{{ post.title }}</a></li>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
Reference in New Issue
Block a user