Skip to content
This repository has been archived by the owner on Jul 5, 2021. It is now read-only.

Commit

Permalink
Update themes
Browse files Browse the repository at this point in the history
  • Loading branch information
digitalcraftsman committed Sep 19, 2017
1 parent 0668b07 commit 34372d9
Show file tree
Hide file tree
Showing 14 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion BluestNight
Submodule BluestNight updated from b27fe6 to b20a90
2 changes: 1 addition & 1 deletion academic
2 changes: 1 addition & 1 deletion after-dark
2 changes: 1 addition & 1 deletion dimension
2 changes: 1 addition & 1 deletion future-imperfect
Submodule future-imperfect updated 81 files
+8 −2 README.md
+6 −3 archetypes/blog.md
+1 −0 archetypes/default.md
+15 −0 archetypes/itemized.md
+50 −15 exampleSite/config.toml
+0 −0 exampleSite/content/about/_index.md
+9 −0 exampleSite/content/contact/_index.md
+16 −0 exampleSite/content/itemized/item1.md
+16 −0 exampleSite/content/itemized/item2.md
+16 −0 exampleSite/content/itemized/item3.md
+16 −0 exampleSite/content/itemized/item4.md
+0 −0 exampleSite/data/comments/.gitkeep
+0 −4 exampleSite/static/css/main.min.css
+0 −6 exampleSite/static/js/main.min.js
+65 −0 exampleSite/staticman.yml
+367 −12 layouts/404.html
+368 −0 layouts/503.html
+1 −8 layouts/_default/list.html
+27 −0 layouts/about/list.html
+48 −0 layouts/contact/list.html
+3 −0 layouts/itemized/content-list.html
+23 −0 layouts/itemized/content-single.html
+44 −0 layouts/itemized/footer-category.html
+22 −0 layouts/itemized/header.html
+12 −0 layouts/itemized/single.html
+365 −0 layouts/maintenance.html
+26 −31 layouts/partials/footer.html
+10 −18 layouts/partials/header.html
+10 −10 layouts/partials/navbar.html
+6 −14 layouts/partials/sidebar.html
+11 −0 layouts/post/comments.html
+4 −7 layouts/post/content-single.html
+1 −5 layouts/post/header.html
+48 −0 layouts/post/staticman.html
+59 −0 layouts/shortcodes/fancybox.html
+1 −1 layouts/shortcodes/img-post.html
+6 −385 static/css/add-on.css
+0 −4 static/css/font-awesome.min.css
+0 −75 static/css/google-font.css
+0 −72 static/css/ie8.css
+0 −123 static/css/ie9.css
+1,069 −1,554 static/css/main.css
+0 −83 static/css/monokai-sublime.css
+ static/fonts/FontAwesome.otf
+ static/fonts/fontawesome-webfont.eot
+0 −655 static/fonts/fontawesome-webfont.svg
+ static/fonts/fontawesome-webfont.ttf
+ static/fonts/fontawesome-webfont.woff
+ static/fonts/fontawesome-webfont.woff2
+ static/fonts/raleway-v10-latin-ext_latin-800.eot
+0 −337 static/fonts/raleway-v10-latin-ext_latin-800.svg
+ static/fonts/raleway-v10-latin-ext_latin-800.ttf
+ static/fonts/raleway-v10-latin-ext_latin-800.woff
+ static/fonts/raleway-v10-latin-ext_latin-800.woff2
+ static/fonts/raleway-v10-latin-ext_latin-900.eot
+0 −336 static/fonts/raleway-v10-latin-ext_latin-900.svg
+ static/fonts/raleway-v10-latin-ext_latin-900.ttf
+ static/fonts/raleway-v10-latin-ext_latin-900.woff
+ static/fonts/raleway-v10-latin-ext_latin-900.woff2
+ static/fonts/raleway-v10-latin-ext_latin-regular.eot
+0 −347 static/fonts/raleway-v10-latin-ext_latin-regular.svg
+ static/fonts/raleway-v10-latin-ext_latin-regular.ttf
+ static/fonts/raleway-v10-latin-ext_latin-regular.woff
+ static/fonts/raleway-v10-latin-ext_latin-regular.woff2
+ static/fonts/source-sans-pro-v9-latin-ext_latin_vietnamese-700.eot
+0 −337 static/fonts/source-sans-pro-v9-latin-ext_latin_vietnamese-700.svg
+ static/fonts/source-sans-pro-v9-latin-ext_latin_vietnamese-700.ttf
+ static/fonts/source-sans-pro-v9-latin-ext_latin_vietnamese-700.woff
+ static/fonts/source-sans-pro-v9-latin-ext_latin_vietnamese-700.woff2
+ static/fonts/source-sans-pro-v9-latin-ext_latin_vietnamese-regular.eot
+0 −345 static/fonts/source-sans-pro-v9-latin-ext_latin_vietnamese-regular.svg
+ static/fonts/source-sans-pro-v9-latin-ext_latin_vietnamese-regular.ttf
+ static/fonts/source-sans-pro-v9-latin-ext_latin_vietnamese-regular.woff
+ static/fonts/source-sans-pro-v9-latin-ext_latin_vietnamese-regular.woff2
+0 −2 static/js/highlight.pack.js
+0 −8 static/js/ie/html5shiv.js
+0 −6 static/js/ie/respond.min.js
+0 −5 static/js/jquery.min.js
+0 −2 static/js/skel.min.js
+32 −0 static/js/util.js
+1 −1 theme.toml
2 changes: 1 addition & 1 deletion hugo-identity-theme
2 changes: 1 addition & 1 deletion hugo-theme-lean-launch-page
2 changes: 1 addition & 1 deletion hugo-theme-zen
2 changes: 1 addition & 1 deletion hugo-travelify-theme
Submodule hugo-travelify-theme updated 69 files
+2 −2 CHANGELOG.md
+22 −22 LICENSE.md
+215 −433 README.md
+24 −24 archetypes/default.md
+2 −2 exampleSite/.gitignore
+92 −178 exampleSite/config.toml
+12 −28 exampleSite/content/about.md
+13 −30 exampleSite/content/contact.md
+1,146 −2,294 exampleSite/content/post/creating-a-new-theme.md
+336 −674 exampleSite/content/post/go-is-for-lovers.md
+82 −166 exampleSite/content/post/hugo-is-for-lovers.md
+196 −416 exampleSite/content/post/hugo-travelify-theme-features.md
+19 −19 exampleSite/content/post/linked-post.md
+154 −154 exampleSite/content/post/migrate-from-jekyll.md
+24 −24 exampleSite/content/post/this-post-has-no-body.md
+61 −118 exampleSite/data/l10n.toml
+46 −46 layouts/404.html
+35 −35 layouts/_default/list.html
+25 −25 layouts/_default/single.html
+30 −30 layouts/_default/summary.html
+30 −30 layouts/_default/terms.html
+24 −24 layouts/index.html
+44 −44 layouts/partials/article_footer.html
+7 −7 layouts/partials/article_header.html
+38 −38 layouts/partials/article_list.html
+24 −24 layouts/partials/footer.html
+57 −57 layouts/partials/footer_js.html
+82 −82 layouts/partials/head.html
+74 −74 layouts/partials/header.html
+32 −32 layouts/partials/nav.html
+18 −18 layouts/partials/pagination.html
+25 −25 layouts/partials/prev_next_post.html
+16 −16 layouts/partials/share.html
+34 −34 layouts/partials/single_article.html
+33 −33 layouts/partials/slider.html
+12 −12 layouts/partials/widgets.html
+17 −17 layouts/partials/widgets/archive.html
+20 −20 layouts/partials/widgets/author.html
+17 −17 layouts/partials/widgets/categories.html
+27 −27 layouts/partials/widgets/facebook_like.html
+62 −62 layouts/partials/widgets/mailchimp.html
+40 −40 layouts/partials/widgets/recent_articles.html
+17 −17 layouts/partials/widgets/search.html
+20 −20 layouts/partials/widgets/tag_cloud.html
+24 −24 layouts/rss.xml
+1 −1 static/css/admin-bar.min.css
+1 −1 static/css/dashicons.min.css
+4 −4 static/css/font-awesome.min.css
+28 −28 static/css/jetpack.css
+2,085 −2,085 static/css/style.css
+96 −96 static/fancybox/helpers/jquery.fancybox-buttons.css
+122 −122 static/fancybox/helpers/jquery.fancybox-buttons.js
+198 −198 static/fancybox/helpers/jquery.fancybox-media.js
+54 −54 static/fancybox/helpers/jquery.fancybox-thumbs.css
+164 −164 static/fancybox/helpers/jquery.fancybox-thumbs.js
+269 −269 static/fancybox/jquery.fancybox.css
+2,016 −2,016 static/fancybox/jquery.fancybox.js
+45 −45 static/fancybox/jquery.fancybox.pack.js
+684 −684 static/fonts/fontawesome-webfont.svg
+1 −1 static/js/admin-bar.min.js
+12 −12 static/js/functions.min.js
+1 −1 static/js/jquery-migrate.min.js
+10 −10 static/js/jquery.cycle.all.min.js
+6 −6 static/js/jquery.js
+54 −54 static/js/script.js
+4 −4 static/js/slider-settings.min.js
+1 −1 static/js/wp-embed.min.js
+4 −4 static/js/wp-emoji-release.min.js
+18 −18 theme.toml
2 changes: 1 addition & 1 deletion mainroad
Submodule mainroad updated 1 files
+21 −0 static/css/style.css
2 changes: 1 addition & 1 deletion robust

0 comments on commit 34372d9

Please sign in to comment.