├── .github └── designGuide.yaml ├── .gitignore ├── 404.md ├── CNAME ├── Gemfile ├── Gemfile.lock ├── Icons.json ├── LICENSE ├── README.md ├── _config.yml ├── _includes ├── footer.html ├── graphs.html ├── head-dark.html └── head.html ├── _layouts ├── 404.html ├── home.html ├── page.html ├── post-index.html ├── post-light-feature.html ├── post-no-feature ├── post-no-feature.html └── post.html ├── _posts ├── 2013-08-05-longform-post.md ├── 2013-08-05-post-with-feature.md ├── 2013-08-05-post-with-figure.md ├── 2013-08-05-the-little-prince.md └── 2013-08-17-test-post.md ├── _sass ├── _grid.scss ├── _mixins.scss ├── _normalize.scss ├── _styles.scss ├── _type.scss └── _variables.scss ├── about.md ├── articles.md ├── assets ├── css │ ├── entypo.css │ ├── fonts │ │ ├── Icons.dev.svg │ │ ├── Icons.eot │ │ ├── Icons.svg │ │ ├── Icons.ttf │ │ └── Icons.woff │ └── i.scss ├── fonts │ ├── icomoon.dev.svg │ ├── icomoon.eot │ ├── icomoon.svg │ ├── icomoon.ttf │ └── icomoon.woff └── js │ ├── jquery.js │ ├── jquery.min.js │ ├── main.js │ ├── main.min.js │ ├── retina.js │ ├── retina.min.js │ ├── scripts.js │ ├── scripts.min.js │ └── vendor │ ├── jquery-1.9.1.min.js │ ├── jquery.fitvids.js │ ├── jquery.magnific-popup.js │ └── modernizr-2.6.2.custom.min.js ├── favicon.ico ├── features.md ├── feed.xml ├── humans.txt ├── images ├── avatar.png ├── categories.png ├── favicon.png ├── filler.png ├── filler@2x.png ├── gatsby.jpg ├── menu-dark.png ├── menu-dark@2x.png ├── menu.png ├── menu@2x.png ├── money.jpg ├── money@2x.jpg ├── og_image.gif ├── og_image.png ├── search.png ├── soft-trees.jpg ├── sticker-mule.jpg ├── sticker-mule@2x.jpg └── typewriter.jpg ├── index.md ├── robots.txt └── sitemap.xml /.github/designGuide.yaml: -------------------------------------------------------------------------------- 1 | design: ["*.less","*.scss" "*.css"] 2 | config: .github 3 | team_reviewers: designers 4 | comment: | 5 | Please be sure to reference the Robin Design Guide: https://github.com/robinpowered/design-guide. 6 | If you need additional design guidance tag the design team @designers. 7 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Don't include generated site 2 | _site 3 | 4 | # Ignore sass-cache generated by Jekyll 5 | .sass-cache 6 | -------------------------------------------------------------------------------- /404.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: "404" 3 | title: "Page Not Found" 4 | --- 5 | -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | jekyll.gtat.me -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | 3 | gem 'jekyll' 4 | gem 'jekyll-minibundle' 5 | gem 'coderay' 6 | gem 'rake' -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- 1 | GEM 2 | remote: https://rubygems.org/ 3 | specs: 4 | classifier (1.3.3) 5 | fast-stemmer (>= 1.0.0) 6 | coderay (1.0.9) 7 | colorator (0.1) 8 | commander (4.1.4) 9 | highline (~> 1.6.11) 10 | directory_watcher (1.4.1) 11 | fast-stemmer (1.0.2) 12 | highline (1.6.19) 13 | jekyll (1.1.2) 14 | classifier (~> 1.3) 15 | colorator (~> 0.1) 16 | commander (~> 4.1.3) 17 | directory_watcher (~> 1.4.1) 18 | kramdown (~> 1.0.2) 19 | liquid (~> 2.5.1) 20 | maruku (~> 0.5) 21 | pygments.rb (~> 0.5.0) 22 | redcarpet (~> 2.2.2) 23 | safe_yaml (~> 0.7.0) 24 | jekyll-minibundle (1.1.0) 25 | kramdown (1.0.2) 26 | liquid (2.5.1) 27 | maruku (0.6.1) 28 | syntax (>= 1.0.0) 29 | posix-spawn (0.3.6) 30 | pygments.rb (0.5.2) 31 | posix-spawn (~> 0.3.6) 32 | yajl-ruby (~> 1.3.1) 33 | rake (10.1.0) 34 | redcarpet (2.2.2) 35 | safe_yaml (0.7.1) 36 | syntax (1.0.0) 37 | yajl-ruby (1.1.0) 38 | 39 | PLATFORMS 40 | ruby 41 | 42 | DEPENDENCIES 43 | coderay 44 | jekyll 45 | jekyll-minibundle 46 | rake 47 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License 2 | 3 | Copyright (c) François Monniot, http://francois.monniot.eu 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in 13 | all copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | THE SOFTWARE. -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Balzac 2 | 3 | This is forked from [minimal mistakes](http://mademistakes.com). I needed some type of framework to build off as I have no experience with Jekyll. Michael set up an awesome dev environment for this which really helped speed up my progress. He also already wrote up an incredibly comprehensive readme.md so I basically copied all of it and replaced what was necessary. The design itself is my own and I cannot let you sell this or tweak the design for resale, unless I you [contact me](mailto:cole@coletownsend.com). 4 | 5 | 6 | If you'd like give me credit somewhere on your blog or tweet a shout out to 7 | [@twnsndco](https://twitter.com/twnsndco), that would be pretty sweet. 8 | 9 | If you feel like donating — [Give it a thought.](http://gtat.me/balzac/donate) 10 | 11 | --- 12 | 13 | 14 |  15 |  16 | 17 | ## Features: 18 | - flexible, uses max-width for responsive goodness 19 | - responsive drop down menu 20 | - retina images using @2x 21 | - post loop in the footer showing 3 latest posts 22 | - custom portfolio page for case studies 23 | 24 | ## Basic Setup 25 | 26 | 1. [Install Jekyll](http://jekyllrb.com) if you haven't already. 27 | 2. Download this bad boy. 28 | 3. Fork the [Balzac repo](http://github.com/coletownsend/balzac-for-jekyll/) 29 | 4. Twerk it out so it's just for you. 30 | 5. ??? 31 | 6. Profit 32 | 33 | ## [Preview the Theme](http://jekyll.gtat.me) 34 | ======= 35 | [Preview the Theme](http://jekyll.gtat.me) 36 | 37 | ``` bash 38 | balzac-for-jekyll/ 39 | ├── _includes 40 | | ├── footer.html //site footer 41 | | ├── head.html //site head 42 | | ├── head-dark.html //dark site head for light pages 43 | ├── _layouts 44 | | ├── home.html //homepage layout 45 | | ├── page.html //page layout 46 | | ├── post-index.html //post listing layout 47 | | └── post.html //post layout 48 | | ├── post-no-feature.html //feature image-less post layout 49 | ├── _posts 50 | ├── assets 51 | | ├── css //preprocessed less styles. good idea to minify 52 | | ├── img //images and graphics used in css and js 53 | | ├── js 54 | | | ├── main.js //jQuery plugins and settings 55 | | | └── vendor //all 3rd party scripts 56 | | └── sass 57 | ├── images //images for posts and pages 58 | ├── about.md //about page 59 | ├── articles.md //lists all posts from latest to oldest 60 | └── index.md //homepage. lists 5 most recent posts 61 | ``` 62 | 63 | # Customization 64 | 65 | ## _config.yml 66 | 67 | Most of the variables found here are used in the .html files found in `_includes` if you need to add or remove anything. A good place to start would be to change the title, tagline, description, and url of your site. When working locally comment out `url` or else you will get a bunch of broken links because they are absolute and prefixed with `{{ site.url }}` in the various `_includes` and `_layouts`. Just remember to uncomment `url` when building for deployment or pushing to **gh-pages**... 68 | 69 | ### Owner/Author Information 70 | 71 | Change your name, bio, Twitter url, email, Dribbble URL, etc. 72 | 73 | 74 | ### Top Navigation Links 75 | 76 | Edit page/post titles and URLs to include in the site's navigation. For external links add `external: true`. 77 | 78 | ``` yaml 79 | # sample top navigation links 80 | links: 81 | - title: About Page 82 | url: /about 83 | - title: Other Page 84 | url: /other-page 85 | - title: External Page 86 | url: http://coletownsend.com 87 | external: true 88 | ``` 89 | 90 | ## Other Stuff 91 | 92 | The rest is just your average Jekyll config settings. Nothing too crazy here... 93 | 94 | ### _includes 95 | 96 | For the most part you can leave these as is since the author/owner details are pulled from `_config.yml`. That said you'll probably want to customize the copyright stuff in `footer.html` to your liking. 97 | 98 | ### Adding Posts and Pages 99 | 100 | There are two main content layouts: `post.html` (for posts) and `page.html` (for pages). Both have large **feature images** that span the full-width of the screen, and both are meant for text heavy blog posts (or articles). 101 | 102 | ### Feature Images 103 | 104 | A good rule of thumb is to keep feature images nice and wide so you don't push the body text too far down. An image cropped around around 1024 x 256 pixels will keep file size down with an acceptable resolution for most devices. 105 | 106 | ``` yaml 107 | image: 108 | # local image 109 | feature: feature-image-filename.jpg 110 | # link image 111 | feature: "http(s)://image.domain.com/feature-image-filename.jpg" 112 | ``` 113 | 114 | This makes the assumption that the feature image is in the *images* folder unless it has a link address. To add a feature image to a post or page just include the filename in the front matter like so. 115 | You can "serve" images responsively with retina.js. All you need to do is have a file with @2x before the file type. That should be placed in the *images* folder. You literally don't have to do anything other than that. 2 copies. One is linked. That's it. 116 | Ex: 117 | `cool-photo@2x.jpg` 118 | 119 | **There is a default feature image that will show up for and posts. It isn't retina or anything. It's just there in case you want one but forget <3* 120 | 121 | #### If you don't want a feature image 122 | …just say so in the front-matter. Go to your-post-name.md and make sure it has this guy up top. 123 | ``` 124 | layout: post-no-feature 125 | ``` 126 | 127 | ### Categories 128 | 129 | In the sample `_posts` folder you may have noticed `category: articles` in the front matter. I like keeping all posts grouped in the same folder. If you decide to rename or add categories you will need to modify the permalink in `articles.md` along with the filename (if renaming). 130 | 131 | For example. Say you want to group all your posts under `blog/` instead of `articles/`. In your post add `category: blog` to the front matter, rename or duplicate `articles.md` to `blog.md` and change the permalink in that file to `permalink: /blog/index.html`. 132 | 133 | If done correctly `/blog` should be a page listing all the site's posts. 134 | 135 | 136 | ## License 137 | 138 | This is free to use, fork, do whatever you want. Please *do not* sell this design though. You don't need to link me to it, but please contact me if you intend to market this theme. I am releasing premium versions of this design for select CMS's. 139 | -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- 1 | title: Balzac 2 | tagline: A beautiful theme. 3 | description: Describe your website. 4 | canonical: http://jekyll.gtat.me 5 | 6 | # Owner/author information 7 | owner: 8 | name: Cole Townsend 9 | avatar: avatar.png 10 | bio: "Aesthete & Athlete" 11 | email: cole@coletownsend.com 12 | twitter: twnsndco 13 | github: coletownsend 14 | instagram: ctrunsthis 15 | dribbble: coletownsend 16 | disqus: balzac 17 | location: "Buffalo, NY" 18 | # Plug in your disqus shortname! 19 | 20 | tools: 21 | standards: "HTML, SCSS, Jekyll" 22 | software: "git" 23 | 24 | # Open Graph customization 25 | opengraph: 26 | locale: en_US 27 | 28 | # Links to include in top navigation 29 | # For external links add external: true 30 | links: 31 | - title: About 32 | url: /about 33 | - title: Github 34 | url: https://github.com/ColeTownsend/Balzac-for-Jekyll 35 | external: true 36 | - title: Cole Who? 37 | url: http://coletownsend.com 38 | external: true 39 | 40 | # http://en.wikipedia.org/wiki/List_of_tz_database_time_zones 41 | timezone: America/New_York 42 | future: true 43 | highlighter: pygments 44 | markdown: kramdown 45 | 46 | kramdown: 47 | auto_ids: true 48 | footnote_nr: 1 49 | entity_output: as_char 50 | toc_levels: 1..6 51 | use_coderay: false 52 | 53 | coderay: 54 | coderay_line_numbers: 55 | coderay_line_numbers_start: 1 56 | coderay_tab_width: 4 57 | coderay_bold_every: 10 58 | coderay_css: class 59 | 60 | sass: 61 | style: :compressed 62 | 63 | # https://github.com/mojombo/jekyll/wiki/Permalinks 64 | permalink: /:categories/:title 65 | 66 | include: [".htaccess"] 67 | exclude: ["lib", "config.rb", "Capfile", "config", "log", "Rakefile", "Rakefile.rb", "tmp"] 68 | -------------------------------------------------------------------------------- /_includes/footer.html: -------------------------------------------------------------------------------- 1 |
2 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 |