diff options
-rw-r--r-- | _config.yml | 1 | ||||
-rw-r--r-- | _layouts/default.html | 14 | ||||
-rw-r--r-- | _layouts/post.html | 2 | ||||
-rw-r--r-- | _posts/2013-10-8-generations.md | 2 | ||||
-rw-r--r-- | _posts/2013-4-9-erlang-tcp-socket-pull-pattern.md | 2 | ||||
-rw-r--r-- | _posts/2013-7-11-goplus.md | 2 | ||||
-rw-r--r-- | index.html | 2 |
7 files changed, 10 insertions, 15 deletions
diff --git a/_config.yml b/_config.yml index 0afbce8..0f997d7 100644 --- a/_config.yml +++ b/_config.yml @@ -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: diff --git a/_layouts/default.html b/_layouts/default.html index 850afb1..8373c87 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -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]--> diff --git a/_layouts/post.html b/_layouts/post.html index 6509673..98dc12f 100644 --- a/_layouts/post.html +++ b/_layouts/post.html @@ -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> diff --git a/_posts/2013-10-8-generations.md b/_posts/2013-10-8-generations.md index 904f625..06fd72a 100644 --- a/_posts/2013-10-8-generations.md +++ b/_posts/2013-10-8-generations.md @@ -1,8 +1,6 @@ --- layout: post title: Generations -categories: -- crypticio --- A simple file distribution strategy for very large scale, high-availability diff --git a/_posts/2013-4-9-erlang-tcp-socket-pull-pattern.md b/_posts/2013-4-9-erlang-tcp-socket-pull-pattern.md index 23d1736..ac293e3 100644 --- a/_posts/2013-4-9-erlang-tcp-socket-pull-pattern.md +++ b/_posts/2013-4-9-erlang-tcp-socket-pull-pattern.md @@ -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, diff --git a/_posts/2013-7-11-goplus.md b/_posts/2013-7-11-goplus.md index 0b76add..ae56f79 100644 --- a/_posts/2013-7-11-goplus.md +++ b/_posts/2013-7-11-goplus.md @@ -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 }} »</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 %} </ul> </div> |