]> git.quilime.com - notes.git/commitdiff
Making stuff work with baseurl
authorGabriel Dunne <gdunne@quilime.com>
Fri, 25 Apr 2014 01:34:44 +0000 (18:34 -0700)
committerGabriel Dunne <gdunne@quilime.com>
Fri, 25 Apr 2014 01:34:44 +0000 (18:34 -0700)
_config.yml
_layouts/default.html
archive.html
index.html
js/script.js
publish.sh

index 04318cc005e61b6514a40cbd4656090aced6f6f8..ed4fc1dc3de43b8f264913b39397c9a0fd754ec5 100644 (file)
@@ -1,4 +1,5 @@
-name: notes
-markdown: redcarpet
-pygments: true
-permalink : /:month-:day-:year/:title.html
\ No newline at end of file
+name : notes
+markdown : redcarpet
+pygments : true
+permalink : /:month-:day-:year/:title.html
+baseurl : /notes
\ No newline at end of file
index f369c270f1dca36fdc906285d57ad5036895390f..84a81e4480b049305cbd9894c3ce393785cef4e9 100644 (file)
@@ -7,10 +7,10 @@
         <meta name="viewport" content="width=device-width">
 
         <!-- syntax highlighting CSS -->
-        <link rel="stylesheet" href="/css/syntax.css">
+        <link rel="stylesheet" href="{{ site.baseurl }}/css/syntax.css">
 
         <!-- Custom CSS -->
-        <link rel="stylesheet" href="/css/main.css">
+        <link rel="stylesheet" href="{{ site.baseurl }}/css/main.css">
 
     </head>
     <body>
@@ -18,7 +18,7 @@
         <div class="site">
 
           <div class="header">
-            <h1 class="title"><a href="/">{{ site.name }}</a></h1>
+            <h1 class="title"><a href="{{ site.baseurl }}">{{ site.name }}</a></h1>
           </div>
 
           {{ content }}
@@ -30,7 +30,7 @@
           </div>
         </div>
 
-        <script src="/js/script.js"></script>
+        <script src="{{ site.baseurl }}/js/script.js"></script>
     </body>
 </html>
 
index faf7922298a797fdb5f3de44da71c27087af437d..f13192fbc1b0adac70e99f111a530bb983bb999a 100644 (file)
@@ -10,7 +10,7 @@ title: Your New Jekyll Site
       <ul>
       {% for posts in category %}
         {% for post in posts %}
-          <li><a href="{{ post.url }}">{{ post.title }}</a></li>
+          <li><a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a></li>
         {% endfor %}
       {% endfor %}
       </ul>
index 0eb6540318375bb1c220327ee240d5a44be8d9db..34cf8ab87035de28a8622270e02be915bb6ee0f0 100644 (file)
@@ -9,7 +9,7 @@ title: notes
       <li>
       <span>{{ post.date | date_to_string }}</span>
       &mdash;
-      <a href="{{ post.url }}">{{ post.title }}</a>
+      <a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a>
       </li>
     {% endfor %}
   </ul>
index 5893f9d0d514d138e78eb87e60955fa0ffda624f..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 100644 (file)
@@ -1 +0,0 @@
-console.log('hello world');
\ No newline at end of file
index e7df6ee3390c24730aae4379127a395904d9658c..bd12e2c271f23b0596727dd15cce16485484b7a1 100755 (executable)
@@ -1,3 +1,5 @@
 #!/bin/bash
 
-echo "test"
\ No newline at end of file
+jekyll build
+rsycn _site quilime@quilime.com:/home/quilime/gabrieldunne-site/notes
+