Skip to content

Commit

Permalink
Bugfixes and file path fix for JS
Browse files Browse the repository at this point in the history
  • Loading branch information
David Miller committed Sep 27, 2014
1 parent bba380e commit f93414b
Show file tree
Hide file tree
Showing 8 changed files with 919 additions and 904 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
_site
_site
node_modules
2 changes: 1 addition & 1 deletion Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ module.exports = function(grunt) {
banner: '<%= banner %>'
},
files: {
src: ['css/<%= pkg.name %>.css', 'css/<%= pkg.name %>.min.css', 'js/<%= pkg.name %>.js', 'js/<%= pkg.name %>.min.js']
src: ['css/<%= pkg.name %>.css', 'css/<%= pkg.name %>.min.css', 'js/<%= pkg.name %>.min.js']
}
}
},
Expand Down
7 changes: 4 additions & 3 deletions _config.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# Site settings
title: Clean Blog
email: your-email@domain.com
description: "Write an awesome description for your new site here. You can edit this line in _config.yml. It will appear in your document head meta (for Google search results) and in your feed.xml site description."
email: your-email@yourdomain.com
description: "Write your site description here. It will be used as your sites meta description as well!"
baseurl: "/startbootstrap-clean-blog-jekyll"
url: "http://startbootstrap.com"
url: "http://yourdomain.com"
twitter_username: SBootstrap
github_username: davidtmiller
facebook_username: IronSummitMedia
Expand All @@ -12,3 +12,4 @@ facebook_username: IronSummitMedia
markdown: kramdown
permalink: pretty
paginate: 5
exclude: ["node_modules"]
6 changes: 3 additions & 3 deletions _includes/footer.html
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,10 @@
</footer>

<!-- jQuery -->
<script src="{{ " /js/jquery.min.js " | prepend: site.baseurl }}"></script>
<script src="{{ "/js/jquery.min.js " | prepend: site.baseurl }}"></script>

<!-- Bootstrap Core JavaScript -->
<script src="{{ " /js/bootstrap.min.js " | prepend: site.baseurl }}"></script>
<script src="{{ "/js/bootstrap.min.js " | prepend: site.baseurl }}"></script>

<!-- Custom Theme JavaScript -->
<script src="{{ " /js/clean-blog.min.js " | prepend: site.baseurl }}"></script>
<script src="{{ "/js/clean-blog.min.js " | prepend: site.baseurl }}"></script>
6 changes: 6 additions & 0 deletions css/clean-blog.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
/*!
* Clean Blog v1.0.0 (http://startbootstrap.com)
* Copyright 2014 Start Bootstrap
* Licensed under Apache 2.0 (https://github.com/IronSummitMedia/startbootstrap/blob/gh-pages/LICENSE)
*/

body {
font-family: 'Lora', 'Times New Roman', serif;
font-size: 20px;
Expand Down
6 changes: 6 additions & 0 deletions css/clean-blog.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit f93414b

Please sign in to comment.