tagline: The Jekyll Butler
url: http://getpoole.com
paginate: 1
-baseurl: /
+basename: ""
author:
name: Mark Otto
url: https://twitter.com/mdo
</title>
<!-- CSS -->
- <link rel="stylesheet" href="{{ site.baseurl }}public/css/poole.css">
- <link rel="stylesheet" href="{{ site.baseurl }}public/css/syntax.css">
+ <link rel="stylesheet" href="{{ site.baseurl }}/public/css/poole.css">
+ <link rel="stylesheet" href="{{ site.baseurl }}/public/css/syntax.css">
<!-- Icons -->
- <link rel="apple-touch-icon-precomposed" sizes="144x144" href="{{ site.baseurl }}public/apple-touch-icon-precomposed.png">
- <link rel="shortcut icon" href="{{ site.baseurl }}public/favicon.ico">
+ <link rel="apple-touch-icon-precomposed" sizes="144x144" href="{{ site.baseurl }}/public/apple-touch-icon-precomposed.png">
+ <link rel="shortcut icon" href="{{ site.baseurl }}/public/favicon.ico">
<!-- RSS -->
- <link rel="alternate" type="application/atom+xml" title="{{ site.title }}" href="{{ site.baseurl }}atom.xml">
+ <link rel="alternate" type="application/atom+xml" title="{{ site.title }}" href="{{ site.baseurl }}/atom.xml">
</head>
<div class="container content">
<header class="masthead">
<h3 class="masthead-title">
- <a href="{{ site.baseurl }}" title="Home">{{ site.title }}</a>
+ <a href="{{ site.baseurl }}/" title="Home">{{ site.title }}</a>
<small>{{ site.tagline }}</small>
</h3>
</header>
\r
Poole is a streamlined Jekyll site designed and built as a foundation for building more meaningful themes. Poole, and every theme built on it, includes the following:\r
\r
-* Complete Jekyll setup included (layouts, config, [404](/404.html), [RSS feed](/atom.xml), posts, and [example page](/about))\r
+* Complete Jekyll setup included (layouts, config, [404]({{ site.baseurl }}/404.html), [RSS feed]({{ site.baseurl }}/atom.xml), posts, and [example page]({{ site.baseurl }}/about))\r
* Mobile friendly design and development\r
* Easily scalable text and component sizing with `rem` units in the CSS\r
* Support for a wide gamut of HTML elements\r
<feed xmlns="http://www.w3.org/2005/Atom">
<title>{{ site.title }}</title>
- <link href="{{ site.url }}{{ site.baseurl }}atom.xml" rel="self"/>
+ <link href="{{ site.url }}{{ site.baseurl }}/atom.xml" rel="self"/>
<link href="{{ site.url }}{{ site.baseurl }}"/>
<updated>{{ site.time | date_to_xmlschema }}</updated>
<id>{{ site.url }}</id>
{% for post in site.posts %}
<entry>
<title>{{ post.title }}</title>
- <link href="{{ site.url }}{{ site.baseurl }}{{ post.url }}"/>
+ <link href="{{ site.url }}{{ site.baseurl }}/{{ post.url }}"/>
<updated>{{ post.date | date_to_xmlschema }}</updated>
<id>{{ site.url }}{{ post.id }}</id>
<content type="html">{{ post.content | xml_escape }}</content>
{% for post in paginator.posts %}
<article class="post">
<h1 class="post-title">
- <a href="{{ post.url }}">
+ <a href="{{ site.baseurl }}{{ post.url }}">
{{ post.title }}
</a>
</h1>
<div class="pagination">
{% if paginator.next_page %}
- <a class="pagination-item older" href="{{ site.baseurl }}page{{paginator.next_page}}">Older</a>
+ <a class="pagination-item older" href="{{ site.baseurl }}/page{{paginator.next_page}}">Older</a>
{% else %}
<span class="pagination-item older">Older</span>
{% endif %}
{% if paginator.page == 2 %}
<a class="pagination-item newer" href="{{ site.baseurl }}">Newer</a>
{% else %}
- <a class="pagination-item newer" href="{{ site.baseurl }}page{{paginator.previous_page}}">Newer</a>
+ <a class="pagination-item newer" href="{{ site.baseurl }}/page{{paginator.previous_page}}">Newer</a>
{% endif %}
{% else %}
<span class="pagination-item newer">Newer</span>