Getting rid of 'baser' variable & references
This commit is contained in:
parent
6d68ec4aa6
commit
df63ca923c
|
@ -4,14 +4,14 @@
|
|||
<title>{% if page.title %}{{ page.title }}{% else %}{{ site.title }}{% endif %}</title>
|
||||
<meta name="viewport" content="width=device-width">
|
||||
<meta name="description" content="{{ site.description }}">
|
||||
<link rel="canonical" href="{{ page.url | replace:'index.html','' | prepend: site.baseurl | prepend: site.url }}">
|
||||
<link rel="canonical" href="{{ page.url | replace:'index.html','' | prepend: site.url }}">
|
||||
|
||||
|
||||
<!-- Custom CSS & Bootstrap Core CSS - Uses Bootswatch Flatly Theme: http://bootswatch.com/flatly/ -->
|
||||
<link rel="stylesheet" href="{{ "/style.css" | prepend: site.baseurl }}">
|
||||
<link rel="stylesheet" href="{{ "/style.css" }}">
|
||||
|
||||
<!-- Custom Fonts -->
|
||||
<link rel="stylesheet" href="{{ "/css/font-awesome/css/font-awesome.min.css" | prepend: site.baseurl }}">
|
||||
<link rel="stylesheet" href="{{ "/css/font-awesome/css/font-awesome.min.css" }}">
|
||||
<link href="//fonts.googleapis.com/css?family=Montserrat:400,700" rel="stylesheet" type="text/css">
|
||||
<link href="//fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic" rel="stylesheet" type="text/css">
|
||||
|
||||
|
|
|
@ -1,17 +1,17 @@
|
|||
<!-- jQuery Version 1.11.0 -->
|
||||
<script src="{{ "/js/jquery-1.11.0.js" | prepend: site.baseurl }}"></script>
|
||||
<script src="{{ "/js/jquery-1.11.0.js" }}"></script>
|
||||
|
||||
<!-- Bootstrap Core JavaScript -->
|
||||
<script src="{{ "/js/bootstrap.min.js" | prepend: site.baseurl }}"></script>
|
||||
<script src="{{ "/js/bootstrap.min.js" }}"></script>
|
||||
|
||||
<!-- Plugin JavaScript -->
|
||||
<script src="{{ "/js/jquery.easing.min.js" | prepend: site.baseurl }}"></script>
|
||||
<script src="{{ "/js/classie.js" | prepend: site.baseurl }}"></script>
|
||||
<script src="{{ "/js/cbpAnimatedHeader.js" | prepend: site.baseurl }}"></script>
|
||||
<script src="{{ "/js/jquery.easing.min.js" }}"></script>
|
||||
<script src="{{ "/js/classie.js" }}"></script>
|
||||
<script src="{{ "/js/cbpAnimatedHeader.js" }}"></script>
|
||||
|
||||
<!-- Contact Form JavaScript -->
|
||||
<script src="{{ "/js/jqBootstrapValidation.js" | prepend: site.baseurl }}"></script>
|
||||
<script src="{{ "/js/contact_me.js" | prepend: site.baseurl }}"></script>
|
||||
<script src="{{ "/js/jqBootstrapValidation.js" }}"></script>
|
||||
<script src="{{ "/js/contact_me.js" }}"></script>
|
||||
|
||||
<!-- Custom Theme JavaScript -->
|
||||
<script src="{{ "/js/freelancer.js" | prepend: site.baseurl }}"></script>
|
||||
<script src="{{ "/js/freelancer.js" }}"></script>
|
||||
|
|
8
feed.xml
8
feed.xml
|
@ -6,8 +6,8 @@ layout: null
|
|||
<channel>
|
||||
<title>{{ site.title | xml_escape }}</title>
|
||||
<description>{{ site.description | xml_escape }}</description>
|
||||
<link>{{ site.url }}{{ site.baseurl }}/</link>
|
||||
<atom:link href="{{ "/feed.xml" | prepend: site.baseurl | prepend: site.url }}" rel="self" type="application/rss+xml" />
|
||||
<link>{{ site.url }}/</link>
|
||||
<atom:link href="{{ "/feed.xml" }}" rel="self" type="application/rss+xml" />
|
||||
<pubDate>{{ site.time | date_to_rfc822 }}</pubDate>
|
||||
<lastBuildDate>{{ site.time | date_to_rfc822 }}</lastBuildDate>
|
||||
<generator>Jekyll v{{ jekyll.version }}</generator>
|
||||
|
@ -16,8 +16,8 @@ layout: null
|
|||
<title>{{ post.title | xml_escape }}</title>
|
||||
<description>{{ post.description | xml_escape }}</description>
|
||||
<pubDate>{{ post.date | date_to_rfc822 }}</pubDate>
|
||||
<link>{{ post.url | prepend: site.baseurl | prepend: site.url }}</link>
|
||||
<guid isPermaLink="true">{{ post.url | prepend: site.baseurl | prepend: site.url }}</guid>
|
||||
<link>{{ post.url | prepend: site.url }}</link>
|
||||
<guid isPermaLink="true">{{ post.url | prepend: site.url }}</guid>
|
||||
{% for tag in post.tags %}
|
||||
<category>{{ tag | xml_escape }}</category>
|
||||
{% endfor %}
|
||||
|
|
Loading…
Reference in New Issue