Browse code

added support for custom includes

Brandon Mathis authored on 31/07/2011 at 16:27:25
Showing 3 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,4 @@
0
+<section>
1
+  <h1>About Me</h1>
2
+  <p>A little something about me.</p>
3
+</section>
0 4
new file mode 100644
... ...
@@ -0,0 +1,3 @@
0
+<!--Fonts from Google's Web font directory at http://google.com/webfonts -->
1
+<link href='http://fonts.googleapis.com/css?family=PT+Serif:regular,italic,bold,bolditalic' rel='stylesheet' type='text/css'>
2
+<link href='http://fonts.googleapis.com/css?family=PT+Sans:regular,italic,bold,bolditalic' rel='stylesheet' type='text/css'>
... ...
@@ -25,11 +25,10 @@
25 25
   <script src="{{ root_url }}/javascripts/modernizr-2.0.js"></script>
26 26
   <script src="http://s3.amazonaws.com/ender-js/jeesh.min.js"></script>
27 27
   <script src="{{ root_url }}/javascripts/octopress.js" type="text/javascript"></script>
28
-  <link href='http://fonts.googleapis.com/css?family=PT+Serif:regular,italic,bold,bolditalic' rel='stylesheet' type='text/css'>
29
-  <link href='http://fonts.googleapis.com/css?family=PT+Sans:regular,italic,bold,bolditalic' rel='stylesheet' type='text/css'>
30 28
   {% capture rss_url %}{% if site.subscribe_rss contains ':' %}{{ site.subscribe_rss }}{% else %}{{ root_url }}{{ site.subscribe_rss }}{% endif %}{% endcapture %}
31 29
   <link href="{{ rss_url }}" rel="alternate" title="{{site.title}}" type="application/atom+xml"/>
32 30
   {% include google_analytics.html %}
33 31
   {% include google_plus_one.html %}
34 32
   {% include twitter_sharing.html %}
33
+  {% include custom/head.html %}
35 34
 </head>