fixed links and stuff for sure

pull/2/head
Brian Picciano 11 years ago
parent cb9a8db60d
commit e229920fc9
  1. 1
      _config.yml
  2. 14
      _layouts/default.html
  3. 2
      _layouts/post.html
  4. 2
      _posts/2013-10-8-generations.md
  5. 2
      _posts/2013-4-9-erlang-tcp-socket-pull-pattern.md
  6. 2
      _posts/2013-7-11-goplus.md
  7. 2
      index.html

@ -4,6 +4,7 @@ url: http://mediocregopher.com
lsi: false
exclude: [LICENSE, CNAME, README.md, .gitignore]
markdown: redcarpet
permalink: none
# Theme customization - please change from the defaults!
theme:

@ -12,15 +12,15 @@
<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 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="stylesheet" href="/thoughts/css/font-awesome.css">
<link rel="stylesheet" href="/thoughts/css/base.css">
<link rel="stylesheet" href="/thoughts/css/skeleton.css">
<link rel="stylesheet" href="/thoughts/css/screen.css">
<link rel="stylesheet" href="/thoughts/css/layout.css">
<link rel="stylesheet" href="/thoughts/css/peaksea.css">
<link rel="stylesheet" href="css/font-awesome.css">
<link rel="stylesheet" href="css/base.css">
<link rel="stylesheet" href="css/skeleton.css">
<link rel="stylesheet" href="css/screen.css">
<link rel="stylesheet" href="css/layout.css">
<link rel="stylesheet" href="css/peaksea.css">
<!--[if IE 7]>
<link rel="stylesheet" href="/assets/css/font-awesome-ie7.min.css">
<![endif]-->

@ -4,7 +4,7 @@ layout: default
<p class="meta">
{{ page.date | date: "%B %d, %Y" }}
<a href="/">
<a href="./index.html">
<i class="home icon-home"></i>
</a>
</p>

@ -1,8 +1,6 @@
---
layout: post
title: Generations
categories:
- crypticio
---
A simple file distribution strategy for very large scale, high-availability

@ -1,8 +1,6 @@
---
layout: post
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,

@ -1,8 +1,6 @@
---
layout: post
title: Go+
categories:
- go
---
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>
<ul id="blog-posts" class="posts">
{% for post in site.posts %}
<li><span>{{ post.date | date_to_string }} &raquo;</span><a href="/thoughts{{ post.url }}">{{ post.title }}</a></li>
<li><span>{{ post.date | date_to_string }} &raquo;</span><a href=".{{ post.url }}">{{ post.title }}</a></li>
{% endfor %}
</ul>
</div>

Loading…
Cancel
Save