├── screenshot.png ├── Gemfile ├── assets ├── img │ ├── path.jpg │ ├── thumb.png │ ├── bgimage.png │ ├── avatar-icon.png │ ├── hello_world.jpeg │ ├── 404-southpark.jpg │ └── install-steps.gif ├── css │ ├── beautifuljekyll-minimal.css │ ├── pygment_highlights.css │ ├── staticman.css │ ├── beautifuljekyll.css │ └── bootstrap-social.css └── js │ ├── staticman.js │ └── beautifuljekyll.js ├── .github ├── FUNDING.yml ├── issue_template.md ├── pull_request_template.md └── workflows │ └── ci.yml ├── index.html ├── .gitignore ├── _includes ├── comments.html ├── ext-js.html ├── gtm_body.html ├── cloudflare_analytics.html ├── ext-css.html ├── gtag.html ├── utterances-comment.html ├── footer-minimal.html ├── gtm_head.html ├── google_analytics.html ├── matomo.html ├── fb-comment.html ├── readtime.html ├── disqus.html ├── footer-scripts.html ├── staticman-comment.html ├── footer.html ├── search.html ├── social-share.html ├── nav.html ├── header.html ├── head.html ├── staticman-comments.html └── social-networks-links.html ├── 404.html ├── aboutme.md ├── _layouts ├── default.html ├── page.html ├── base.html ├── minimal.html ├── post.html └── home.html ├── .gitattributes ├── docs └── index.html ├── LICENSE ├── feed.xml ├── tags.html ├── beautiful-jekyll-theme.gemspec ├── _posts ├── 2020-02-28-test-markdown.md └── 2020-02-26-flake-it-till-you-make-it.md ├── staticman.yml ├── _config.yml ├── CHANGELOG.md ├── README.md └── _data └── ui-text.yml /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSUTD/beautiful-jekyll/master/screenshot.png -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | source "https://rubygems.org" 4 | 5 | gemspec 6 | 7 | -------------------------------------------------------------------------------- /assets/img/path.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSUTD/beautiful-jekyll/master/assets/img/path.jpg -------------------------------------------------------------------------------- /assets/img/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSUTD/beautiful-jekyll/master/assets/img/thumb.png -------------------------------------------------------------------------------- /assets/img/bgimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSUTD/beautiful-jekyll/master/assets/img/bgimage.png -------------------------------------------------------------------------------- /assets/img/avatar-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSUTD/beautiful-jekyll/master/assets/img/avatar-icon.png -------------------------------------------------------------------------------- /assets/img/hello_world.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSUTD/beautiful-jekyll/master/assets/img/hello_world.jpeg -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: daattali 4 | patreon: DeanAttali 5 | -------------------------------------------------------------------------------- /assets/img/404-southpark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSUTD/beautiful-jekyll/master/assets/img/404-southpark.jpg -------------------------------------------------------------------------------- /assets/img/install-steps.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSUTD/beautiful-jekyll/master/assets/img/install-steps.gif -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: home 3 | title: My website 4 | subtitle: This is where I will tell my friends way too much about me 5 | --- 6 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # project 2 | _site 3 | .sass-cache 4 | .vagrant 5 | 6 | # general 7 | .DS_Store 8 | Thumbs.db 9 | ehthumbs.db 10 | 11 | Gemfile.lock 12 | 13 | beautiful-jekyll-theme-*.gem 14 | -------------------------------------------------------------------------------- /_includes/comments.html: -------------------------------------------------------------------------------- 1 | {% if page.comments %} 2 | {% include disqus.html %} 3 | {% include fb-comment.html %} 4 | {% include staticman-comments.html %} 5 | {% include utterances-comment.html %} 6 | {% endif %} 7 | -------------------------------------------------------------------------------- /.github/issue_template.md: -------------------------------------------------------------------------------- 1 | Please only submit feature suggestions or bug reports if you believe something is broken. 2 | 3 | If you need help, or if you enjoy Beautiful Jekyll and want to support it, please upgrade to one of our plans: https://beautifuljekyll.com/plans/ 4 | -------------------------------------------------------------------------------- /_includes/ext-js.html: -------------------------------------------------------------------------------- 1 | {% if include.js.sri %} 2 | 3 | {% elsif include.js.href %} 4 | 5 | {% else %} 6 | 7 | {% endif %} 8 | -------------------------------------------------------------------------------- /_includes/gtm_body.html: -------------------------------------------------------------------------------- 1 | {% if site.gtm %} 2 | 3 | 4 | 5 | {% endif %} 6 | -------------------------------------------------------------------------------- /assets/css/beautifuljekyll-minimal.css: -------------------------------------------------------------------------------- 1 | .main-content { 2 | padding-bottom: 3.125rem; 3 | } 4 | 5 | footer.footer-min { 6 | position: fixed; 7 | bottom: 0; 8 | width: 100%; 9 | padding: 0.1875rem; 10 | background-color: #f5f5f5; 11 | border-top: 1px solid #eeeeee; 12 | text-align: center; 13 | } 14 | -------------------------------------------------------------------------------- /_includes/cloudflare_analytics.html: -------------------------------------------------------------------------------- 1 | {% if site.cloudflare_analytics %} 2 | 3 | 7 | 8 | {% endif %} 9 | -------------------------------------------------------------------------------- /_includes/ext-css.html: -------------------------------------------------------------------------------- 1 | {% if include.css.sri %} 2 | 3 | {% elsif include.css.href %} 4 | 5 | {% else %} 6 | 7 | {% endif %} 8 | -------------------------------------------------------------------------------- /404.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | title: 404 - Page not found 4 | permalink: /404.html 5 | --- 6 | 7 |
8 |

Whoops, this page doesn't exist.

9 |

Move along. (404 error)

10 |
11 | 12 | Not found 13 |
14 | -------------------------------------------------------------------------------- /_includes/gtag.html: -------------------------------------------------------------------------------- 1 | {% if site.gtag %} 2 | 3 | 4 | 10 | {% endif %} 11 | -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- 1 | Please note that if you are trying to update **your** website, this is the wrong place to do so. Please carefully follow the Beautiful Jekyll instructions (found at https://github.com/daattali/beautiful-jekyll#readme) and make sure you submit changes to **your** version of the project. 2 | 3 | If your intention is to submit a Pull Request, please describe what your pull request achieves. 4 | 5 | Thank you! 6 | -------------------------------------------------------------------------------- /_includes/utterances-comment.html: -------------------------------------------------------------------------------- 1 | {% if site.utterances.repository and site.utterances.issue-term %} 2 | 3 | 11 | 12 | {% endif %} 13 | 14 | -------------------------------------------------------------------------------- /aboutme.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: page 3 | title: About me 4 | subtitle: Why you'd want to go on a date with me 5 | --- 6 | 7 | My name is Inigo Montoya. I have the following qualities: 8 | 9 | - I rock a great mustache 10 | - I'm extremely loyal to my family 11 | 12 | What else do you need? 13 | 14 | ### My story 15 | 16 | To be honest, I'm having some trouble remembering right now, so why don't you just watch [my movie](https://en.wikipedia.org/wiki/The_Princess_Bride_%28film%29) and it will answer **all** your questions. 17 | -------------------------------------------------------------------------------- /_includes/footer-minimal.html: -------------------------------------------------------------------------------- 1 | 19 | -------------------------------------------------------------------------------- /_includes/gtm_head.html: -------------------------------------------------------------------------------- 1 | {% if site.gtm %} 2 | 3 | 10 | 11 | {% endif %} 12 | -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- 1 | name: Beautiful Jekyll CI 2 | on: [push, pull_request] 3 | jobs: 4 | build: 5 | name: Build Jekyll 6 | runs-on: ubuntu-latest 7 | steps: 8 | - uses: actions/checkout@v2 9 | - name: Build the site in the jekyll/builder container 10 | run: | 11 | export JEKYLL_VERSION=3.8 12 | docker run \ 13 | -v ${{ github.workspace }}:/srv/jekyll -v ${{ github.workspace }}/_site:/srv/jekyll/_site \ 14 | -e PAGES_REPO_NWO=${{ github.repository }} \ 15 | jekyll/builder:$JEKYLL_VERSION /bin/bash -c "chmod 777 /srv/jekyll && jekyll build --future" 16 | -------------------------------------------------------------------------------- /_includes/google_analytics.html: -------------------------------------------------------------------------------- 1 | {% if site.google_analytics %} 2 | 3 | 13 | 14 | {% endif %} 15 | -------------------------------------------------------------------------------- /_layouts/default.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: base 3 | --- 4 | 5 |
6 | 7 |
8 | {% if page.before-content %} 9 |
10 | {% for file in page.before-content %} 11 | {% include {{ file }} %} 12 | {% endfor %} 13 |
14 | {% endif %} 15 | 16 | {{ content }} 17 | 18 | {% if page.after-content %} 19 |
20 | {% for file in page.after-content %} 21 | {% include {{ file }} %} 22 | {% endfor %} 23 |
24 | {% endif %} 25 |
26 | -------------------------------------------------------------------------------- /_includes/matomo.html: -------------------------------------------------------------------------------- 1 | {% if site.matomo %} 2 | 3 | 16 | 17 | {% endif %} 18 | -------------------------------------------------------------------------------- /_includes/fb-comment.html: -------------------------------------------------------------------------------- 1 | {%- if site.fb_comment_id -%} 2 |
3 |
4 | 13 |
14 | 15 |
16 | {%- endif -%} 17 | -------------------------------------------------------------------------------- /_includes/readtime.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | {% assign ReadTime = page.content | strip_html | number_of_words %} 4 | {% assign calcReadTime = ReadTime | float %} 5 | {% assign finalReadTime = calcReadTime | divided_by:200 | round: 2 %} 6 | {% assign number = finalReadTime | round %} 7 | {% if number >= 1 %} 8 | {% assign yesReadTime = number | append: " minute read" %} 9 | · {{ yesReadTime }} 10 | {% elsif number < 1 %} 11 | {% assign minReadTime = '< 1 minute read' %} 12 | · {{ minReadTime }} 13 | {% else %} 14 | {% assign nilReadTime = number | replace:'0',' ' %} 15 | {{ nilReadTime }} 16 | {% endif %} 17 | -------------------------------------------------------------------------------- /_includes/disqus.html: -------------------------------------------------------------------------------- 1 | {%- if site.disqus -%} 2 |
3 |
4 |
5 | 16 | 17 |
18 |
19 | {%- endif -%} 20 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | # Define standard eol format 2 | 3 | # Web Files 4 | *.html text eol=lf 5 | *.md text eol=lf 6 | *.css text eol=lf 7 | *.js text eol=lf 8 | 9 | # Jekyll related files 10 | *.yml text eol=lf 11 | 12 | # Git related files 13 | .gittattributes text eol=lf 14 | .gitignore text eol=lf 15 | .gitkeep text eol=lf 16 | 17 | # Ruby files 18 | *.rb text eol=lf 19 | Gemfile text eol=lf 20 | Gemfile.lock text eol=lf 21 | 22 | # Github specific fies 23 | LICENCE text eol=lf 24 | 25 | # Docker specific files 26 | Dockerfile text eol=lf 27 | 28 | # VSCode files 29 | *.json text eol=lf 30 | 31 | # General multimedia files 32 | *.jpg binary 33 | *.jpeg binary 34 | *.gif binary 35 | *.png binary 36 | *.t3x binary 37 | *.t3d binary 38 | *.exe binary 39 | *.data binary 40 | *.ttf binary 41 | *.eof binary 42 | *.eot binary 43 | *.swf binary 44 | *.mov binary 45 | *.mp4 binary 46 | *.mp3 binary 47 | *.ogg binary 48 | *.flv binary 49 | -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Beautiful Jekyll 8 | 11 | 14 | 15 | 16 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /_layouts/page.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: base 3 | --- 4 | 5 | {% include header.html type="page" %} 6 | 7 |
8 |
9 |
10 | {% if page.before-content %} 11 |
12 | {% for file in page.before-content %} 13 | {% include {{ file }} %} 14 | {% endfor %} 15 |
16 | {% endif %} 17 | 18 | {{ content }} 19 | 20 | {% if page.after-content %} 21 |
22 | {% for file in page.after-content %} 23 | {% include {{ file }} %} 24 | {% endfor %} 25 |
26 | {% endif %} 27 | 28 | {% include comments.html %} 29 |
30 |
31 |
32 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2020 Dean Attali 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 all 13 | 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 THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /_includes/footer-scripts.html: -------------------------------------------------------------------------------- 1 | {% if layout.common-ext-js %} 2 | {% for js in layout.common-ext-js %} 3 | {% include ext-js.html js=js %} 4 | {% endfor %} 5 | {% endif %} 6 | 7 | {% if layout.common-js %} 8 | {% for js in layout.common-js %} 9 | 10 | {% if js contains 'jquery' %} 11 | 16 | {% else %} 17 | 18 | {% endif %} 19 | {% endfor %} 20 | {% endif %} 21 | 22 | {% if site.site-js %} 23 | {% for js in site.site-js %} 24 | 25 | {% endfor %} 26 | {% endif %} 27 | 28 | {% if page.ext-js %} 29 | {% for js in page.ext-js %} 30 | {% include ext-js.html js=js %} 31 | {% endfor %} 32 | {% endif %} 33 | 34 | {% if page.js %} 35 | {% for js in page.js %} 36 | 37 | {% endfor %} 38 | {% endif %} 39 | -------------------------------------------------------------------------------- /feed.xml: -------------------------------------------------------------------------------- 1 | --- 2 | layout: null 3 | --- 4 | 5 | 6 | 7 | {% if site.title %} 8 | {{ site.title | xml_escape }} 9 | {% endif %} 10 | {% if site.rss-description %} 11 | {{ site.rss-description | xml_escape }} 12 | {% endif %} 13 | {{ '' | absolute_url }} 14 | 15 | {% assign excerpt_length = site.excerpt_length | default: 50 %} 16 | {% for post in site.posts limit:20 %} 17 | 18 | {{ post.title | xml_escape }} 19 | 20 | {% if post.subtitle %}{{ post.subtitle | xml_escape }} - {% endif %} 21 | {{ post.content | strip_html | xml_escape | truncatewords: excerpt_length }} 22 | 23 | {{ post.date | date: "%a, %d %b %Y %H:%M:%S %z" }} 24 | {{ post.url | absolute_url }} 25 | {{ post.url | absolute_url }} 26 | 27 | {% endfor %} 28 | 29 | 30 | -------------------------------------------------------------------------------- /_includes/staticman-comment.html: -------------------------------------------------------------------------------- 1 |
2 |
3 | {{ include.name }} 4 |
5 |
6 | 13 |

14 | {% if include.date %} 15 | {% if include.index %}{% endif %} 18 | {% endif %} 19 |

20 |
{{ include.message | markdownify }}
21 |
22 |
23 | -------------------------------------------------------------------------------- /tags.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: page 3 | title: 'Tag Index' 4 | --- 5 | 6 | {% assign date_format = site.date_format | default: "%B %-d, %Y" %} 7 | 8 | {%- capture site_tags -%} 9 | {%- for tag in site.tags -%} 10 | {{- tag | first -}}{%- unless forloop.last -%},{%- endunless -%} 11 | {%- endfor -%} 12 | {%- endcapture -%} 13 | {%- assign tags_list = site_tags | split:',' | sort -%} 14 | 15 | {%- for tag in tags_list -%} 16 |  {{- tag -}} ({{site.tags[tag].size}}) 17 | {%- endfor -%} 18 | 19 |
20 | {%- for tag in tags_list -%} 21 |

22 | 23 |  {{- tag -}} ({{site.tags[tag].size}}) 24 |

25 |
26 | {%- for post in site.tags[tag] -%} 27 |
28 | {{- post.title -}} 29 | 32 |
33 | {%- endfor -%} 34 |
35 | {%- endfor -%} 36 |
37 | -------------------------------------------------------------------------------- /beautiful-jekyll-theme.gemspec: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | Gem::Specification.new do |spec| 4 | spec.name = "beautiful-jekyll-theme" 5 | spec.version = "5.0.0" 6 | spec.authors = ["Dean Attali"] 7 | spec.email = ["daattali@gmail.com"] 8 | 9 | spec.summary = "Beautiful Jekyll is a ready-to-use Jekyll theme to help you create an awesome website quickly. Perfect for personal blogs or simple project websites, with a focus on responsive and clean design." 10 | spec.homepage = "https://beautifuljekyll.com" 11 | spec.license = "MIT" 12 | 13 | spec.files = `git ls-files -z`.split("\x0").select { |f| f.match(%r{^(assets|_layouts|_includes|LICENSE|README|feed|404|_data|tags|staticman)}i) } 14 | 15 | spec.metadata = { 16 | "changelog_uri" => "https://beautifuljekyll.com/updates/", 17 | "documentation_uri" => "https://github.com/daattali/beautiful-jekyll#readme" 18 | } 19 | 20 | spec.add_runtime_dependency "jekyll", "~> 3.8" 21 | spec.add_runtime_dependency "jekyll-paginate", "~> 1.1" 22 | spec.add_runtime_dependency "jekyll-sitemap", "~> 1.4" 23 | spec.add_runtime_dependency "kramdown-parser-gfm", "~> 1.1" 24 | spec.add_runtime_dependency "kramdown", "~> 2.3.0" 25 | 26 | spec.add_development_dependency "bundler", ">= 1.16" 27 | spec.add_development_dependency "rake", "~> 12.0" 28 | end 29 | -------------------------------------------------------------------------------- /_includes/footer.html: -------------------------------------------------------------------------------- 1 | 42 | -------------------------------------------------------------------------------- /_layouts/base.html: -------------------------------------------------------------------------------- 1 | --- 2 | common-css: 3 | - "/assets/css/bootstrap-social.css" 4 | - "/assets/css/beautifuljekyll.css" 5 | common-ext-css: 6 | - href: "https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" 7 | sri: "sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" 8 | - "https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.12.1/css/all.min.css" 9 | - "https://fonts.googleapis.com/css?family=Lora:400,700,400italic,700italic" 10 | - "https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800" 11 | common-ext-js: 12 | - href: "https://code.jquery.com/jquery-3.5.1.slim.min.js" 13 | sri: "sha256-4+XzXVhsDmqanXGHaHvgh1gMQKX40OUvDEBTu8JcmNs=" 14 | - href: "https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js" 15 | sri: "sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo" 16 | - href: "https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js" 17 | sri: "sha384-wfSDF2E50Y2D1uUdj0O3uMBJnjuUD4Ih7YwaYd1iqfktj0Uod8GCExl3Og8ifwB6" 18 | common-js: 19 | - "/assets/js/beautifuljekyll.js" 20 | --- 21 | 22 | 23 | 24 | 25 | {% include head.html %} 26 | 27 | 28 | 29 | {% include gtm_body.html %} 30 | 31 | {% include nav.html %} 32 | 33 | {{ content }} 34 | 35 | {% include footer.html %} 36 | 37 | {% include footer-scripts.html %} 38 | 39 | 40 | 41 | -------------------------------------------------------------------------------- /_layouts/minimal.html: -------------------------------------------------------------------------------- 1 | --- 2 | common-css: 3 | - "/assets/css/beautifuljekyll-minimal.css" 4 | common-ext-css: 5 | - href: "https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" 6 | sri: "sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" 7 | common-ext-js: 8 | - href: "https://code.jquery.com/jquery-3.5.1.slim.min.js" 9 | sri: "sha256-4+XzXVhsDmqanXGHaHvgh1gMQKX40OUvDEBTu8JcmNs=" 10 | - href: "https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js" 11 | sri: "sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo" 12 | - href: "https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js" 13 | sri: "sha384-wfSDF2E50Y2D1uUdj0O3uMBJnjuUD4Ih7YwaYd1iqfktj0Uod8GCExl3Og8ifwB6" 14 | --- 15 | 16 | 17 | 18 | 19 | {% include head.html %} 20 | 21 | 22 | 23 |
24 | {% if page.before-content %} 25 |
26 | {% for file in page.before-content %} 27 | {% include {{ file }} %} 28 | {% endfor %} 29 |
30 | {% endif %} 31 | 32 | {{ content }} 33 | 34 | {% if page.after-content %} 35 |
36 | {% for file in page.after-content %} 37 | {% include {{ file }} %} 38 | {% endfor %} 39 |
40 | {% endif %} 41 |
42 | 43 | {% include footer-minimal.html %} 44 | 45 | {% include footer-scripts.html %} 46 | 47 | 48 | 49 | -------------------------------------------------------------------------------- /_includes/search.html: -------------------------------------------------------------------------------- 1 | {% if site.post_search %} 2 | 3 |
4 | 5 | 6 | 7 | 8 | 9 | 10 | 37 |
38 | 39 | {% endif %} 40 | -------------------------------------------------------------------------------- /_posts/2020-02-28-test-markdown.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: post 3 | title: Sample blog post 4 | subtitle: Each post also has a subtitle 5 | gh-repo: daattali/beautiful-jekyll 6 | gh-badge: [star, fork, follow] 7 | tags: [test] 8 | comments: true 9 | --- 10 | 11 | This is a demo post to show you how to write blog posts with markdown. I strongly encourage you to [take 5 minutes to learn how to write in markdown](https://markdowntutorial.com/) - it'll teach you how to transform regular text into bold/italics/headings/tables/etc. 12 | 13 | **Here is some bold text** 14 | 15 | ## Here is a secondary heading 16 | 17 | Here's a useless table: 18 | 19 | | Number | Next number | Previous number | 20 | | :------ |:--- | :--- | 21 | | Five | Six | Four | 22 | | Ten | Eleven | Nine | 23 | | Seven | Eight | Six | 24 | | Two | Three | One | 25 | 26 | 27 | How about a yummy crepe? 28 | 29 | ![Crepe](https://s3-media3.fl.yelpcdn.com/bphoto/cQ1Yoa75m2yUFFbY2xwuqw/348s.jpg) 30 | 31 | It can also be centered! 32 | 33 | ![Crepe](https://s3-media3.fl.yelpcdn.com/bphoto/cQ1Yoa75m2yUFFbY2xwuqw/348s.jpg){: .mx-auto.d-block :} 34 | 35 | Here's a code chunk: 36 | 37 | ~~~ 38 | var foo = function(x) { 39 | return(x + 5); 40 | } 41 | foo(3) 42 | ~~~ 43 | 44 | And here is the same code with syntax highlighting: 45 | 46 | ```javascript 47 | var foo = function(x) { 48 | return(x + 5); 49 | } 50 | foo(3) 51 | ``` 52 | 53 | And here is the same code yet again but with line numbers: 54 | 55 | {% highlight javascript linenos %} 56 | var foo = function(x) { 57 | return(x + 5); 58 | } 59 | foo(3) 60 | {% endhighlight %} 61 | 62 | ## Boxes 63 | You can add notification, warning and error boxes like this: 64 | 65 | ### Notification 66 | 67 | {: .box-note} 68 | **Note:** This is a notification box. 69 | 70 | ### Warning 71 | 72 | {: .box-warning} 73 | **Warning:** This is a warning box. 74 | 75 | ### Error 76 | 77 | {: .box-error} 78 | **Error:** This is an error box. 79 | -------------------------------------------------------------------------------- /assets/js/staticman.js: -------------------------------------------------------------------------------- 1 | --- 2 | layout: null 3 | --- 4 | 5 | (function ($) { 6 | var $comments = $('.js-comments'); 7 | 8 | $('#new_comment').submit(function () { 9 | var form = this; 10 | 11 | $(form).addClass('disabled'); 12 | 13 | {% assign sm = site.staticman -%} 14 | var endpoint = '{{ sm.endpoint }}'; 15 | var repository = '{{ sm.repository }}'; 16 | var branch = '{{ sm.branch }}'; 17 | 18 | $.ajax({ 19 | type: $(this).attr('method'), 20 | url: endpoint + repository + '/' + branch + '/comments', 21 | data: $(this).serialize(), 22 | contentType: 'application/x-www-form-urlencoded', 23 | success: function (data) { 24 | $('#comment-form-submit').addClass('d-none'); 25 | $('#comment-form-submitted').removeClass('d-none'); 26 | $('.page__comments-form .js-notice').removeClass('alert-danger'); 27 | $('.page__comments-form .js-notice').addClass('alert-success'); 28 | showAlert('success'); 29 | }, 30 | error: function (err) { 31 | console.log(err); 32 | $('#comment-form-submitted').addClass('d-none'); 33 | $('#comment-form-submit').removeClass('d-none'); 34 | $('.page__comments-form .js-notice').removeClass('alert-success'); 35 | $('.page__comments-form .js-notice').addClass('alert-danger'); 36 | showAlert('failure'); 37 | $(form).removeClass('disabled'); 38 | } 39 | }); 40 | 41 | return false; 42 | }); 43 | 44 | function showAlert(message) { 45 | $('.page__comments-form .js-notice').removeClass('d-none'); 46 | if (message == 'success') { 47 | $('.page__comments-form .js-notice-text-success').removeClass('d-none'); 48 | $('.page__comments-form .js-notice-text-failure').addClass('d-none'); 49 | } else { 50 | $('.page__comments-form .js-notice-text-success').addClass('d-none'); 51 | $('.page__comments-form .js-notice-text-failure').removeClass('d-none'); 52 | } 53 | } 54 | })(jQuery); 55 | -------------------------------------------------------------------------------- /_includes/social-share.html: -------------------------------------------------------------------------------- 1 | 2 | {% assign any-share-links = false %} 3 | {% for links in site.share-links-active %} 4 | {% if links[1] == true %} 5 | {% assign any-share-links = true %} 6 | {% endif %} 7 | {% endfor %} 8 | 9 | {% if any-share-links %} 10 |
11 | Share: 12 | 13 | {% if site.share-links-active.twitter %} 14 | 16 | 17 | Twitter 18 | 19 | {% endif %} 20 | 21 | {% if site.share-links-active.facebook %} 22 | 24 | 25 | Facebook 26 | 27 | {% endif %} 28 | 29 | {% if site.share-links-active.linkedin %} 30 | 32 | 33 | LinkedIn 34 | 35 | {% endif %} 36 | 37 | {% if site.share-links-active.vk %} 38 | 40 | 41 | VK 42 | 43 | {% endif %} 44 | 45 | {% if site.share-links-active.reddit %} 46 | 48 | 49 | Reddit 50 | 51 | {% endif %} 52 | 53 |
54 | 55 | {% endif %} 56 | -------------------------------------------------------------------------------- /_includes/nav.html: -------------------------------------------------------------------------------- 1 | 61 | 62 | {% include search.html %} 63 | -------------------------------------------------------------------------------- /_posts/2020-02-26-flake-it-till-you-make-it.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: post 3 | title: Flake it till you make it 4 | subtitle: Excerpt from Soulshaping by Jeff Brown 5 | cover-img: /assets/img/path.jpg 6 | thumbnail-img: /assets/img/thumb.png 7 | share-img: /assets/img/path.jpg 8 | tags: [books, test] 9 | --- 10 | 11 | Under what circumstances should we step off a path? When is it essential that we finish what we start? If I bought a bag of peanuts and had an allergic reaction, no one would fault me if I threw it out. If I ended a relationship with a woman who hit me, no one would say that I had a commitment problem. But if I walk away from a seemingly secure route because my soul has other ideas, I am a flake? 12 | 13 | The truth is that no one else can definitively know the path we are here to walk. It’s tempting to listen—many of us long for the omnipotent other—but unless they are genuine psychic intuitives, they can’t know. All others can know is their own truth, and if they’ve actually done the work to excavate it, they will have the good sense to know that they cannot genuinely know anyone else’s. Only soul knows the path it is here to walk. Since you are the only one living in your temple, only you can know its scriptures and interpretive structure. 14 | 15 | At the heart of the struggle are two very different ideas of success—survival-driven and soul-driven. For survivalists, success is security, pragmatism, power over others. Success is the absence of material suffering, the nourishing of the soul be damned. It is an odd and ironic thing that most of the material power in our world often resides in the hands of younger souls. Still working in the egoic and material realms, they love the sensations of power and focus most of their energy on accumulation. Older souls tend not to be as materially driven. They have already played the worldly game in previous lives and they search for more subtle shades of meaning in this one—authentication rather than accumulation. They are often ignored by the culture at large, although they really are the truest warriors. 16 | 17 | A soulful notion of success rests on the actualization of our innate image. Success is simply the completion of a soul step, however unsightly it may be. We have finished what we started when the lesson is learned. What a fear-based culture calls a wonderful opportunity may be fruitless and misguided for the soul. Staying in a passionless relationship may satisfy our need for comfort, but it may stifle the soul. Becoming a famous lawyer is only worthwhile if the soul demands it. It is an essential failure if you are called to be a monastic this time around. If you need to explore and abandon ten careers in order to stretch your soul toward its innate image, then so be it. Flake it till you make it. 18 | -------------------------------------------------------------------------------- /_layouts/post.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: base 3 | --- 4 | 5 | {% include header.html type="post" %} 6 | 7 |
8 |
9 |
10 | 11 | {% if page.gh-repo %} 12 | {% assign gh_split = page.gh-repo | split:'/' %} 13 | {% assign gh_user = gh_split[0] %} 14 | {% assign gh_repo = gh_split[1] %} 15 | 16 |
17 | {% if page.gh-badge.size > 0 %} 18 | {% for badge in page.gh-badge %} 19 | {% case badge %} 20 | {% when 'star'%} 21 | 22 | {% when 'watch'%} 23 | 24 | {% when 'fork'%} 25 | 26 | {% when 'follow'%} 27 | 28 | {% endcase %} 29 | {% endfor %} 30 | {% endif %} 31 |
32 | {% endif %} 33 | 34 | {% if page.before-content %} 35 |
36 | {% for file in page.before-content %} 37 | {% include {{ file }} %} 38 | {% endfor %} 39 |
40 | {% endif %} 41 | 42 |
43 | {{ content }} 44 |
45 | 46 | {% if page.tags.size > 0 %} 47 |
48 | Tags: 49 | {% for tag in page.tags %} 50 | {{- tag -}} 51 | {% endfor %} 52 |
53 | {% endif %} 54 | 55 | {% if page.after-content %} 56 |
57 | {% for file in page.after-content %} 58 | {% include {{ file }} %} 59 | {% endfor %} 60 |
61 | {% endif %} 62 | 63 | {% if page.social-share %} 64 | {% include social-share.html %} 65 | {% endif %} 66 | 67 |
    68 | {% if page.previous.url %} 69 | 72 | {% endif %} 73 | {% if page.next.url %} 74 | 77 | {% endif %} 78 |
79 | {% include comments.html %} 80 |
81 |
82 |
83 | -------------------------------------------------------------------------------- /_layouts/home.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: page 3 | --- 4 | 5 | {{ content }} 6 | 7 | {% assign posts = paginator.posts | default: site.posts %} 8 | 9 |
10 | {% for post in posts %} 11 |
12 | 13 | {%- capture thumbnail -%} 14 | {% if post.thumbnail-img %} 15 | {{ post.thumbnail-img }} 16 | {% elsif post.cover-img %} 17 | {% if post.cover-img.first %} 18 | {{ post.cover-img[0].first.first }} 19 | {% else %} 20 | {{ post.cover-img }} 21 | {% endif %} 22 | {% else %} 23 | {% endif %} 24 | {% endcapture %} 25 | {% assign thumbnail=thumbnail | strip %} 26 | 27 | {% if site.feed_show_excerpt == false %} 28 | {% if thumbnail != "" %} 29 |
30 | 31 | Post thumbnail 32 | 33 |
34 | {% endif %} 35 | {% endif %} 36 | 37 | 38 |

{{ post.title }}

39 | 40 | {% if post.subtitle %} 41 |

42 | {{ post.subtitle }} 43 |

44 | {% endif %} 45 |
46 | 47 | 51 | 52 | {% if thumbnail != "" %} 53 |
54 | 55 | Post thumbnail 56 | 57 |
58 | {% endif %} 59 | 60 | {% unless site.feed_show_excerpt == false %} 61 | {% if thumbnail != "" %} 62 |
63 | 64 | Post thumbnail 65 | 66 |
67 | {% endif %} 68 | 69 |
70 | {% assign excerpt_length = site.excerpt_length | default: 50 %} 71 | {{ post.excerpt | strip_html | xml_escape | truncatewords: excerpt_length }} 72 | {% assign excerpt_word_count = post.excerpt | number_of_words %} 73 | {% if post.content != post.excerpt or excerpt_word_count > excerpt_length %} 74 | [Read More] 75 | {% endif %} 76 |
77 | {% endunless %} 78 | 79 | {% if site.feed_show_tags != false and post.tags.size > 0 %} 80 |
81 | Tags: 82 | {% for tag in post.tags %} 83 | {{- tag -}} 84 | {% endfor %} 85 |
86 | {% endif %} 87 | 88 |
89 | {% endfor %} 90 |
91 | 92 | {% if paginator.total_pages > 1 %} 93 | 105 | {% endif %} 106 | -------------------------------------------------------------------------------- /_includes/header.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | {% assign date_format = site.date_format | default: "%B %-d, %Y" %} 4 | 5 | {% if page.cover-img or page.title %} 6 | 7 | {% if page.cover-img %} 8 |
21 | {% endif %} 22 | 23 |
24 | {% if page.cover-img %} 25 |
26 |
27 |
28 |
29 |
30 |

{% if page.title %}{{ page.title }}{% else %}
{% endif %}

31 | {% if page.subtitle %} 32 | {% if include.type == "page" %} 33 |
34 | {{ page.subtitle }} 35 | {% else %} 36 |

{{ page.subtitle }}

37 | {% endif %} 38 | {% endif %} 39 | 40 | {% if include.type == "post" %} 41 | 42 | {% if page.last-updated %} 43 | 47 | {% endif %} 48 | {% if page.readtime %} 49 | {% include readtime.html %} 50 | {% endif %} 51 | {% endif %} 52 |
53 |
54 |
55 |
56 | 57 |
58 | {% endif %} 59 |
60 |
61 |
62 |
63 |
64 |

{% if page.title %}{{ page.title }}{% else %}
{% endif %}

65 | {% if page.subtitle %} 66 | {% if include.type == "page" %} 67 |
68 | {{ page.subtitle }} 69 | {% else %} 70 |

{{ page.subtitle }}

71 | {% endif %} 72 | {% endif %} 73 | 74 | {% if include.type == "post" %} 75 | 76 | {% if page.last-updated %} 77 | 81 | {% endif %} 82 | {% if page.readtime %} 83 | {% include readtime.html %} 84 | {% endif %} 85 | {% endif %} 86 |
87 |
88 |
89 |
90 |
91 |
92 | 93 | 94 | {% else %} 95 |
96 | {% endif %} 97 | -------------------------------------------------------------------------------- /assets/css/pygment_highlights.css: -------------------------------------------------------------------------------- 1 | /* .highlight { background: #ffffff; } Dean commented out */ 2 | /* .highlight pre { background-color: #fff; font-size: 16px } */ 3 | .highlight .c { color: #999988; font-style: italic } /* Comment */ 4 | .highlight .err { color: #a61717; background-color: #e3d2d2 } /* Error */ 5 | .highlight .k { font-weight: bold } /* Keyword */ 6 | .highlight .o { font-weight: bold } /* Operator */ 7 | .highlight .cm { color: #999988; font-style: italic } /* Comment.Multiline */ 8 | .highlight .cp { color: #999999; font-weight: bold } /* Comment.Preproc */ 9 | .highlight .c1 { color: #999988; font-style: italic } /* Comment.Single */ 10 | .highlight .cs { color: #999999; font-weight: bold; font-style: italic } /* Comment.Special */ 11 | .highlight .gd { color: #000000; background-color: #ffdddd } /* Generic.Deleted */ 12 | .highlight .gd .x { color: #000000; background-color: #ffaaaa } /* Generic.Deleted.Specific */ 13 | .highlight .ge { font-style: italic } /* Generic.Emph */ 14 | .highlight .gr { color: #aa0000 } /* Generic.Error */ 15 | .highlight .gh { color: #999999 } /* Generic.Heading */ 16 | .highlight .gi { color: #000000; background-color: #ddffdd } /* Generic.Inserted */ 17 | .highlight .gi .x { color: #000000; background-color: #aaffaa } /* Generic.Inserted.Specific */ 18 | .highlight .go { color: #888888 } /* Generic.Output */ 19 | .highlight .gp { color: #555555 } /* Generic.Prompt */ 20 | .highlight .gs { font-weight: bold } /* Generic.Strong */ 21 | .highlight .gu { color: #aaaaaa } /* Generic.Subheading */ 22 | .highlight .gt { color: #aa0000 } /* Generic.Traceback */ 23 | .highlight .kc { font-weight: bold } /* Keyword.Constant */ 24 | .highlight .kd { font-weight: bold } /* Keyword.Declaration */ 25 | .highlight .kp { font-weight: bold } /* Keyword.Pseudo */ 26 | .highlight .kr { font-weight: bold } /* Keyword.Reserved */ 27 | .highlight .kt { color: #445588; font-weight: bold } /* Keyword.Type */ 28 | .highlight .m { color: #009999 } /* Literal.Number */ 29 | .highlight .s { color: #d14 } /* Literal.String */ 30 | .highlight .na { color: #008080 } /* Name.Attribute */ 31 | .highlight .nb { color: #0086B3 } /* Name.Builtin */ 32 | .highlight .nc { color: #445588; font-weight: bold } /* Name.Class */ 33 | .highlight .no { color: #008080 } /* Name.Constant */ 34 | .highlight .ni { color: #800080 } /* Name.Entity */ 35 | .highlight .ne { color: #990000; font-weight: bold } /* Name.Exception */ 36 | .highlight .nf { color: #990000; font-weight: bold } /* Name.Function */ 37 | .highlight .nn { color: #555555 } /* Name.Namespace */ 38 | .highlight .nt { color: #000080 } /* Name.Tag */ 39 | .highlight .nv { color: #008080 } /* Name.Variable */ 40 | .highlight .ow { font-weight: bold } /* Operator.Word */ 41 | .highlight .w { color: #bbbbbb } /* Text.Whitespace */ 42 | .highlight .mf { color: #009999 } /* Literal.Number.Float */ 43 | .highlight .mh { color: #009999 } /* Literal.Number.Hex */ 44 | .highlight .mi { color: #009999 } /* Literal.Number.Integer */ 45 | .highlight .mo { color: #009999 } /* Literal.Number.Oct */ 46 | .highlight .sb { color: #d14 } /* Literal.String.Backtick */ 47 | .highlight .sc { color: #d14 } /* Literal.String.Char */ 48 | .highlight .sd { color: #d14 } /* Literal.String.Doc */ 49 | .highlight .s2 { color: #d14 } /* Literal.String.Double */ 50 | .highlight .se { color: #d14 } /* Literal.String.Escape */ 51 | .highlight .sh { color: #d14 } /* Literal.String.Heredoc */ 52 | .highlight .si { color: #d14 } /* Literal.String.Interpol */ 53 | .highlight .sx { color: #d14 } /* Literal.String.Other */ 54 | .highlight .sr { color: #009926 } /* Literal.String.Regex */ 55 | .highlight .s1 { color: #d14 } /* Literal.String.Single */ 56 | .highlight .ss { color: #990073 } /* Literal.String.Symbol */ 57 | .highlight .bp { color: #999999 } /* Name.Builtin.Pseudo */ 58 | .highlight .vc { color: #008080 } /* Name.Variable.Class */ 59 | .highlight .vg { color: #008080 } /* Name.Variable.Global */ 60 | .highlight .vi { color: #008080 } /* Name.Variable.Instance */ 61 | .highlight .il { color: #009999 } /* Literal.Number.Integer.Long */ 62 | -------------------------------------------------------------------------------- /staticman.yml: -------------------------------------------------------------------------------- 1 | # Name of the property. You can have multiple properties with completely 2 | # different config blocks for different sections of your site. 3 | # For example, you can have one property to handle comment submission and 4 | # another one to handle posts. 5 | # To encrypt strings use the following endpoint: 6 | # https://{STATICMAN API INSTANCE}/v3/encrypt/{TEXT TO BE ENCRYPTED} 7 | # {STATICMAN API INSTANCE} should match the `endpoint` in the theme config 8 | # file. 9 | 10 | comments: 11 | # (*) REQUIRED 12 | # 13 | # Names of the fields the form is allowed to submit. If a field that is 14 | # not here is part of the request, an error will be thrown. 15 | allowedFields: ["name", "email", "url", "message"] 16 | 17 | # (*) REQUIRED WHEN USING NOTIFICATIONS 18 | # 19 | # When allowedOrigins is defined, only requests sent from one of the domains 20 | # listed will be accepted. The origin is sent as part as the `options` object 21 | # (e.g. 50) { 14 | $(".navbar").addClass("top-nav-short"); 15 | } else { 16 | $(".navbar").removeClass("top-nav-short"); 17 | } 18 | }); 19 | 20 | // On mobile, hide the avatar when expanding the navbar menu 21 | $('#main-navbar').on('show.bs.collapse', function () { 22 | $(".navbar").addClass("top-nav-expanded"); 23 | }); 24 | $('#main-navbar').on('hidden.bs.collapse', function () { 25 | $(".navbar").removeClass("top-nav-expanded"); 26 | }); 27 | 28 | // show the big header image 29 | BeautifulJekyllJS.initImgs(); 30 | 31 | BeautifulJekyllJS.initSearch(); 32 | }, 33 | 34 | initNavbar : function() { 35 | // Set the navbar-dark/light class based on its background color 36 | const rgb = $('.navbar').css("background-color").replace(/[^\d,]/g,'').split(","); 37 | const brightness = Math.round(( // http://www.w3.org/TR/AERT#color-contrast 38 | parseInt(rgb[0]) * 299 + 39 | parseInt(rgb[1]) * 587 + 40 | parseInt(rgb[2]) * 114 41 | ) / 1000); 42 | if (brightness <= 125) { 43 | $(".navbar").removeClass("navbar-light").addClass("navbar-dark"); 44 | } else { 45 | $(".navbar").removeClass("navbar-dark").addClass("navbar-light"); 46 | } 47 | }, 48 | 49 | initImgs : function() { 50 | // If the page was large images to randomly select from, choose an image 51 | if ($("#header-big-imgs").length > 0) { 52 | BeautifulJekyllJS.bigImgEl = $("#header-big-imgs"); 53 | BeautifulJekyllJS.numImgs = BeautifulJekyllJS.bigImgEl.attr("data-num-img"); 54 | 55 | // 2fc73a3a967e97599c9763d05e564189 56 | // set an initial image 57 | var imgInfo = BeautifulJekyllJS.getImgInfo(); 58 | var src = imgInfo.src; 59 | var desc = imgInfo.desc; 60 | BeautifulJekyllJS.setImg(src, desc); 61 | 62 | // For better UX, prefetch the next image so that it will already be loaded when we want to show it 63 | var getNextImg = function() { 64 | var imgInfo = BeautifulJekyllJS.getImgInfo(); 65 | var src = imgInfo.src; 66 | var desc = imgInfo.desc; 67 | 68 | var prefetchImg = new Image(); 69 | prefetchImg.src = src; 70 | // if I want to do something once the image is ready: `prefetchImg.onload = function(){}` 71 | 72 | setTimeout(function(){ 73 | var img = $("
").addClass("big-img-transition").css("background-image", 'url(' + src + ')'); 74 | $(".intro-header.big-img").prepend(img); 75 | setTimeout(function(){ img.css("opacity", "1"); }, 50); 76 | 77 | // after the animation of fading in the new image is done, prefetch the next one 78 | //img.one("transitioned webkitTransitionEnd oTransitionEnd MSTransitionEnd", function(){ 79 | setTimeout(function() { 80 | BeautifulJekyllJS.setImg(src, desc); 81 | img.remove(); 82 | getNextImg(); 83 | }, 1000); 84 | //}); 85 | }, 6000); 86 | }; 87 | 88 | // If there are multiple images, cycle through them 89 | if (BeautifulJekyllJS.numImgs > 1) { 90 | getNextImg(); 91 | } 92 | } 93 | }, 94 | 95 | getImgInfo : function() { 96 | var randNum = Math.floor((Math.random() * BeautifulJekyllJS.numImgs) + 1); 97 | var src = BeautifulJekyllJS.bigImgEl.attr("data-img-src-" + randNum); 98 | var desc = BeautifulJekyllJS.bigImgEl.attr("data-img-desc-" + randNum); 99 | 100 | return { 101 | src : src, 102 | desc : desc 103 | } 104 | }, 105 | 106 | setImg : function(src, desc) { 107 | $(".intro-header.big-img").css("background-image", 'url(' + src + ')'); 108 | if (typeof desc !== typeof undefined && desc !== false) { 109 | $(".img-desc").text(desc).show(); 110 | } else { 111 | $(".img-desc").hide(); 112 | } 113 | }, 114 | 115 | initSearch : function() { 116 | if (!document.getElementById("beautifuljekyll-search-overlay")) { 117 | return; 118 | } 119 | 120 | $("#nav-search-link").click(function(e) { 121 | e.preventDefault(); 122 | $("#beautifuljekyll-search-overlay").show(); 123 | $("#nav-search-input").focus().select(); 124 | $("body").addClass("overflow-hidden"); 125 | }); 126 | $("#nav-search-exit").click(function(e) { 127 | e.preventDefault(); 128 | $("#beautifuljekyll-search-overlay").hide(); 129 | $("body").removeClass("overflow-hidden"); 130 | }); 131 | $(document).on('keyup', function(e) { 132 | if (e.key == "Escape") { 133 | $("#beautifuljekyll-search-overlay").hide(); 134 | $("body").removeClass("overflow-hidden"); 135 | } 136 | }); 137 | } 138 | }; 139 | 140 | // 2fc73a3a967e97599c9763d05e564189 141 | 142 | document.addEventListener('DOMContentLoaded', BeautifulJekyllJS.init); 143 | -------------------------------------------------------------------------------- /_includes/head.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | {% capture title %} 6 | {%- if page.share-title -%} 7 | {{ page.share-title | strip_html | xml_escape }} 8 | {%- elsif page.title -%} 9 | {{ page.title | strip_html | xml_escape }} 10 | {%- else -%} 11 | {{ site.title | strip_html | xml_escape }} 12 | {%- endif -%} 13 | {% endcapture %} 14 | 15 | {% capture description %} 16 | {%- if page.share-description -%} 17 | {{ page.share-description | strip_html | xml_escape }} 18 | {%- elsif page.subtitle -%} 19 | {{ page.subtitle | strip_html | xml_escape }} 20 | {%- else -%} 21 | {%- assign excerpt_length = site.excerpt_length | default: 50 -%} 22 | {{ page.content | strip_html | xml_escape | truncatewords: excerpt_length | strip }} 23 | {%- endif -%} 24 | {% endcapture %} 25 | 26 | {{ title }} 27 | 28 | {% if site.author %} 29 | 30 | {% endif %} 31 | 32 | 33 | 34 | {% if site.mobile-theme-col %} 35 | 36 | {% endif %} 37 | 38 | {% if site.keywords %} 39 | 40 | {% endif %} 41 | 42 | 43 | 44 | {% include gtag.html %} 45 | {% include gtm_head.html %} 46 | {% include google_analytics.html %} 47 | {% include cloudflare_analytics.html %} 48 | 49 | {% if layout.common-ext-css %} 50 | {% for css in layout.common-ext-css %} 51 | {% include ext-css.html css=css %} 52 | {% endfor %} 53 | {% endif %} 54 | 55 | {% if layout.common-css %} 56 | {% for css in layout.common-css %} 57 | 58 | {% endfor %} 59 | {% endif %} 60 | 61 | {% if site.site-css %} 62 | {% for css in site.site-css %} 63 | 64 | {% endfor %} 65 | {% endif %} 66 | 67 | {% if page.ext-css %} 68 | {% for css in page.ext-css %} 69 | {% include ext-css.html css=css %} 70 | {% endfor %} 71 | {% endif %} 72 | 73 | {% if page.css %} 74 | {% for css in page.css %} 75 | 76 | {% endfor %} 77 | {% endif %} 78 | 79 | {% if site.fb_app_id %} 80 | 81 | {% endif %} 82 | 83 | {% if site.title %} 84 | 85 | {% endif %} 86 | 87 | {%- capture img -%} 88 | {%- if page.share-img -%} 89 | {{ page.share-img }} 90 | {%- elsif page.cover-img -%} 91 | {%- if page.cover-img.first -%} 92 | {{ page.cover-img[0].first.first }} 93 | {%- else -%} 94 | {{ page.cover-img }} 95 | {%- endif -%} 96 | {%- elsif page.thumbnail-img -%} 97 | {{ page.thumbnail-img }} 98 | {%- elsif site.avatar -%} 99 | {{ site.avatar }} 100 | {% endif %} 101 | {%- endcapture -%} 102 | {%- assign img=img | strip -%} 103 | 104 | 105 | 106 | 107 | {% if img != "" %} 108 | 109 | {% endif %} 110 | 111 | {% if page.id %} 112 | 113 | 114 | 115 | 116 | 117 | {% else %} 118 | 119 | 120 | 121 | {% endif %} 122 | 123 | {% if img != "" and img != site.avatar %} 124 | 125 | {% else %} 126 | 127 | {% endif %} 128 | 129 | 130 | 131 | 132 | 133 | 134 | {% if img != "" %} 135 | 136 | {% endif %} 137 | 138 | {% include matomo.html %} 139 | 140 | {% if page.comments and site.staticman.repository and site.staticman.branch %} 141 | 142 | {% endif %} 143 | 144 | {% if page.head-extra %} 145 | {% for file in page.head-extra %} 146 | {% include {{ file }} %} 147 | {% endfor %} 148 | {% endif %} 149 | 150 | 151 | -------------------------------------------------------------------------------- /_includes/staticman-comments.html: -------------------------------------------------------------------------------- 1 | {% if site.staticman.repository and site.staticman.branch %} 2 |
3 |
4 | 5 |
6 | {% if site.data.comments[page.slug] %} 7 |

{{ site.data.ui-text[site.locale].comments_title | default: "Comments" }}

8 | {% assign comments = site.data.comments[page.slug] | sort %} 9 | {% for comment in comments %} 10 | {% assign email = comment[1].email %} 11 | {% assign name = comment[1].name %} 12 | {% assign url = comment[1].url %} 13 | {% assign date = comment[1].date %} 14 | {% assign message = comment[1].message %} 15 | {% include staticman-comment.html index=forloop.index email=email name=name url=url date=date message=message %} 16 | {% endfor %} 17 | {% endif %} 18 |
19 | 20 | 21 |
22 |

{{ site.data.ui-text[site.locale].comments_label | default: "Leave a Comment" }}

23 |

{{ site.data.ui-text[site.locale].comment_form_info | default: "Your email address will not be published. Required fields are marked" }} *

24 |
25 |
26 |
27 | 28 | 29 |
30 |
31 | 32 | 33 |
34 |
35 | 36 | 37 |
38 |
39 | 40 | 41 |
42 | 50 | 51 |

52 | {{ site.data.ui-text[site.locale].comment_success_msg | default: "Thanks for your comment! It will show on the site once it has been approved." }} 53 | {{ site.data.ui-text[site.locale].comment_error_msg | default: "Sorry, there was an error with your submission. Please make sure all required fields have been completed and try again." }} 54 |

55 | 56 | {% if site.staticman.reCaptcha.siteKey %} 57 |
58 |
59 |
60 | {% endif %} 61 |
62 | 63 | 64 |
65 |
66 |
67 | 68 | 69 | {% if site.staticman.reCaptcha.siteKey %} 70 | 71 | {% endif %} 72 |
73 | 74 | 75 | 76 | 81 | 82 |
83 | {% endif %} 84 | -------------------------------------------------------------------------------- /assets/css/staticman.css: -------------------------------------------------------------------------------- 1 | /* ========================================================================== 2 | Forms 3 | ========================================================================== */ 4 | .staticman-comments form { 5 | margin: 0 0 5px 0; 6 | padding: 1em; 7 | background-color: #f2f3f3; 8 | } 9 | .staticman-comments form p { 10 | margin-bottom: 2.5px; 11 | } 12 | .staticman-comments form br { 13 | display: none; 14 | } 15 | .staticman-comments label, .staticman-comments input, .staticman-comments button, .staticman-comments textarea { 16 | vertical-align: baseline; 17 | vertical-align: middle; 18 | } 19 | .staticman-comments input, .staticman-comments button, .staticman-comments textarea { 20 | box-sizing: border-box; 21 | } 22 | .staticman-comments label { 23 | display: block; 24 | margin-bottom: 0.25em; 25 | color: #494e52; 26 | cursor: pointer; 27 | } 28 | .staticman-comments label small { 29 | font-size: 0.75em; 30 | } 31 | .staticman-comments label input, .staticman-comments label textarea { 32 | display: block; 33 | } 34 | .staticman-comments input, .staticman-comments textarea { 35 | display: inline-block; 36 | width: 100%; 37 | padding: 0.25em; 38 | margin-bottom: 0.5em; 39 | color: #494e52; 40 | background-color: #fff; 41 | border: #f2f3f3; 42 | border-radius: 4px; 43 | box-shadow: 0 1px 1px rgba(0, 0, 0, 0.125); 44 | } 45 | .staticman-comments .input-mini { 46 | width: 60px; 47 | } 48 | .staticman-comments .input-small { 49 | width: 90px; 50 | } 51 | .staticman-comments input[type="button"], .staticman-comments input[type="reset"], .staticman-comments input[type="submit"] { 52 | width: auto; 53 | height: auto; 54 | cursor: pointer; 55 | overflow: visible; 56 | } 57 | .staticman-comments textarea { 58 | resize: vertical; 59 | height: auto; 60 | overflow: auto; 61 | vertical-align: top; 62 | } 63 | .staticman-comments input[type="hidden"] { 64 | display: none; 65 | } 66 | .staticman-comments .form { 67 | position: relative; 68 | } 69 | /* 70 | Focus & active state 71 | ========================================================================== */ 72 | .staticman-comments input:focus, .staticman-comments textarea:focus { 73 | border-color: #7a8288; 74 | outline: 0; 75 | outline: thin dotted \9; 76 | box-shadow: inset 0 1px 3px rgba(73, 78, 82, 0.06), 0 0 5px rgba(122, 130, 136, 0.7); 77 | } 78 | .staticman-comments input[type="file"]:focus, .staticman-comments input[type="radio"]:focus, .staticman-comments input[type="checkbox"]:focus:focus { 79 | box-shadow: none; 80 | } 81 | /* 82 | Help text 83 | ========================================================================== */ 84 | .staticman-comments .form-text { 85 | color: #898c8e; 86 | } 87 | .staticman-comments .form-text { 88 | display: block; 89 | margin-bottom: 1em; 90 | line-height: 1em; 91 | } 92 | /* 93 | .form-group 94 | ========================================================================== */ 95 | .staticman-comments .form-group { 96 | margin-bottom: 5px; 97 | padding: 0; 98 | border-width: 0; 99 | } 100 | /* 101 | Comments 102 | ========================================================================== */ 103 | .staticman-comments .page__comments { 104 | float: left; 105 | margin-left: 0; 106 | margin-right: 0; 107 | width: 100%; 108 | clear: both; 109 | } 110 | .staticman-comments .page__comments-title { 111 | margin-top: 2rem; 112 | margin-bottom: 10px; 113 | padding-top: 2rem; 114 | border-top: 1px solid #f2f3f3; 115 | } 116 | .staticman-comments .page__comments-form { 117 | -webkit-transition: all 0.2s ease-in-out; 118 | transition: all 0.2s ease-in-out; 119 | } 120 | .staticman-comments .page__comments-form.disabled input, .staticman-comments .page__comments-form.disabled button, .staticman-comments .page__comments-form.disabled textarea, .staticman-comments .page__comments-form.disabled label { 121 | pointer-events: none; 122 | cursor: not-allowed; 123 | filter: alpha(opacity=65); 124 | box-shadow: none; 125 | opacity: 0.65; 126 | } 127 | .staticman-comments .comment { 128 | margin: 1em 0; 129 | } 130 | .staticman-comments .comment:not(:last-child) { 131 | border-bottom: 1px solid #f2f3f3; 132 | } 133 | .staticman-comments .comment__avatar-wrapper { 134 | float: left; 135 | width: 60px; 136 | height: 60px; 137 | } 138 | .staticman-comments .comment__avatar { 139 | width: 40px; 140 | height: 40px; 141 | border-radius: 50%; 142 | } 143 | .staticman-comments .comment__content-wrapper { 144 | width: calc(100% - 60px); 145 | } 146 | .staticman-comments .comment__author { 147 | margin: 0; 148 | } 149 | .staticman-comments .comment__author a { 150 | text-decoration: none; 151 | } 152 | .staticman-comments .comment__date { 153 | margin: 0; 154 | } 155 | .staticman-comments .comment__date a { 156 | text-decoration: none; 157 | } 158 | /* ========================================================================== 159 | PRINT STYLES 160 | ========================================================================== */ 161 | .staticman-comments @media print { 162 | /* 163 | Hide the following elements on print 164 | ========================================================================== */ 165 | .staticman-comments [hidden] { 166 | display: none; 167 | } 168 | .staticman-comments .masthead, .staticman-comments .toc, .staticman-comments .page__share, .staticman-comments .page__related, .staticman-comments .pagination, .staticman-comments .ads, .staticman-comments .page__footer, .staticman-comments .page__comments-form, .staticman-comments .author__avatar, .staticman-comments .author__content, .staticman-comments .author__urls-wrapper, .staticman-comments .nav__list, .staticman-comments .sidebar, .staticman-comments .adsbygoogle { 169 | display: none !important; 170 | height: 1px !important; 171 | } 172 | } 173 | /* 174 | Post pagination navigation links 175 | ========================================================================== */ 176 | .staticman-comments .page__comments + .staticman-comments .pagination { 177 | margin-top: 2em; 178 | padding-top: 2em; 179 | border-top: 1px solid #f2f3f3; 180 | } 181 | -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- 1 | # Welcome to Beautiful Jekyll! 2 | # This config file is meant for settings that affect your entire website. When you first 3 | # set up your website you should go through all these settings and edit them, but after 4 | # the initial set up you won't need to come back to this file often. 5 | 6 | # --- Required options --- # 7 | 8 | # Name of website 9 | title: My Website 10 | 11 | # Your name to show in the footer 12 | author: Some Person 13 | 14 | # --- List of links in the navigation bar --- # 15 | 16 | navbar-links: 17 | About Me: "aboutme" 18 | Resources: 19 | - Beautiful Jekyll: "https://beautifuljekyll.com" 20 | - Learn markdown: "https://www.markdowntutorial.com/" 21 | Author's home: "https://deanattali.com" 22 | 23 | # --- Logo --- # 24 | 25 | # Image to show in the navigation bar - works best with a square image 26 | # Remove this parameter if you don't want an image in the navbar 27 | avatar: "/assets/img/avatar-icon.png" 28 | 29 | # By default, the image is cut into a circle. You can disable this behaviour by setting 'round-avatar: false' 30 | round-avatar: true 31 | 32 | # If you want to have an image logo in the top-left corner instead of having the title of the website, 33 | # then specify the following parameter 34 | #title-img: /path/to/image 35 | 36 | 37 | # --- Footer social media links --- # 38 | 39 | # Select the social network links that you want to show in the footer. 40 | # Uncomment the links you want to show and add your information to each one. 41 | social-network-links: 42 | email: "someone@example.com" 43 | facebook: deanattali 44 | github: daattali 45 | twitter: daattali 46 | patreon: DeanAttali 47 | youtube: c/daattali 48 | # medium: yourname 49 | # reddit: yourname 50 | # linkedin: daattali 51 | # xing: yourname 52 | # stackoverflow: "3943160/daattali" 53 | # snapchat: deanat78 54 | # instagram: deanat78 55 | # spotify: yourname 56 | # telephone: +14159998888 57 | # steam: deanat78 58 | # twitch: yourname 59 | # yelp: yourname 60 | # telegram: yourname 61 | # calendly: yourname 62 | # mastodon: instance.url/@username 63 | # ORCID: your ORCID ID 64 | # google-scholar: your google scholar 65 | 66 | # If you want to show a link to an RSS in the footer, add the site description here. 67 | # If you don't want to show an RSS link, remove the following line. 68 | rss-description: This website is a virtual proof that I'm awesome 69 | 70 | # --- General options --- # 71 | 72 | # Select which social network share links to show in posts 73 | share-links-active: 74 | twitter: true 75 | facebook: true 76 | linkedin: true 77 | vk: false 78 | 79 | # How to display the link to your website in the footer 80 | # Remove this if you don't want a link in the footer 81 | url-pretty: "MyWebsite.com" 82 | 83 | # Excerpt word length - Truncate the excerpt of each post on the feed page to the specified number of words 84 | excerpt_length: 50 85 | 86 | # Whether or not to show an excerpt for every blog post in the feed page 87 | feed_show_excerpt: true 88 | 89 | # Whether or not to show a list of tags below each post preview in the feed page 90 | feed_show_tags: true 91 | 92 | # Add a search button to the navbar 93 | post_search: true 94 | 95 | # The keywords to associate with your website, for SEO purposes 96 | #keywords: "my,list,of,keywords" 97 | 98 | # --- Colours / background image --- # 99 | 100 | # Personalize the colours in your website. Colour values can be any valid CSS colour 101 | 102 | navbar-col: "#EAEAEA" 103 | navbar-text-col: "#404040" 104 | navbar-border-col: "#DDDDDD" 105 | page-col: "#FFFFFF" 106 | text-col: "#404040" 107 | link-col: "#008AFF" 108 | hover-col: "#0085A1" 109 | footer-col: "#EAEAEA" 110 | footer-text-col: "#777777" 111 | footer-link-col: "#404040" 112 | 113 | # Alternatively, the navbar, footer, and page background can be set to an image 114 | # instead of colour 115 | 116 | #navbar-img: "/assets/img/bgimage.png" 117 | #footer-img: "/assets/img/bgimage.png" 118 | #page-img: "/assets/img/bgimage.png" 119 | 120 | # Suggest a colour for mobile browsers to use as the browser's theme. This is only supported by a few mobile browsers. 121 | #mobile-theme-col: "#0085A1" 122 | 123 | # For any extra visual customization, you can include additional CSS files in every page on your site. List any custom CSS files here 124 | #site-css: 125 | # - "/assets/css/custom-styles.css" 126 | 127 | # If you have common JavaScript files that should be included in every page, list them here 128 | #site-js: 129 | # - "/assets/js/custom-script.js" 130 | 131 | # --- Web Analytics Section --- # 132 | 133 | # Fill in your Google Analytics gtag.js ID to track your website using gtag 134 | #gtag: "" 135 | 136 | # Fill in your Google Analytics ID to track your website using Google Analytics 137 | #google_analytics: "" 138 | 139 | # Fill in your Cloudflare Analytics beacon token to track your website using Cloudflare Analytics 140 | #cloudflare_analytics: "" 141 | 142 | # Google Tag Manager ID 143 | #gtm: "" 144 | 145 | # Matomo (aka Piwik) Web statistics 146 | # Uncomment the following section to enable Matomo. The opt-out parameter controls 147 | # whether or not you want to allow users to opt out of tracking. 148 | #matomo: 149 | # site_id: "9" 150 | # uri: "demo.wiki.pro" 151 | # opt-out: true 152 | 153 | # --- Comments --- # 154 | 155 | # To use Disqus comments, sign up to https://disqus.com and fill in your Disqus shortname (NOT the userid) 156 | #disqus: "" 157 | 158 | # To use Facebook Comments, create a Facebook app and fill in the Facebook App ID 159 | #fb_comment_id: "" 160 | 161 | # To use Utterances comments: (0) uncomment the following section, (1) fill in 162 | # "repository" (make sure the repository is public), (2) Enable Issues in your repository, 163 | # (3) Install the Utterances app in your repository https://github.com/apps/utterances 164 | # See more details about the parameters below at https://utteranc.es/ 165 | #utterances: 166 | # repository: # GitHub username/repository eg. "daattali/beautiful-jekyll" 167 | # issue-term: title # Mapping between blog posts and GitHub issues 168 | # theme: github-light # Utterances theme 169 | # label: blog-comments # Label that will be assigned to GitHub Issues created by Utterances 170 | 171 | # To use Staticman comments, uncomment the following section. You may leave the reCaptcha 172 | # section commented if you aren't using reCaptcha for spam protection. 173 | # Using Staticman requires advanced knowledge, please consult 174 | # https://github.com/eduardoboucas/staticman/ and https://staticman.net/ for further 175 | # instructions. For any support with staticman please direct questions to staticman and 176 | # not to BeautifulJekyll. 177 | #staticman: 178 | # repository : # GitHub username/repository eg. "daattali/beautiful-jekyll" 179 | # branch : master # If you're not using `master` branch, then you also need to update the `branch` parameter in `staticman.yml` 180 | # endpoint : # URL of your deployment, with a trailing slash eg. "https:///v3/entry/github/" 181 | # reCaptcha: # (optional, set these parameters in `staticman.yml` as well) 182 | # siteKey : # You need to apply for a site key on Google 183 | # secret : # Encrypt your password by going to https:///v3/encrypt/ 184 | 185 | # --- Misc --- # 186 | 187 | # Ruby Date Format to show dates of posts 188 | date_format: "%B %-d, %Y" 189 | 190 | # Facebook App ID 191 | #fb_app_id: "" 192 | 193 | # --- You don't need to touch anything below here (but you can if you want) --- # 194 | 195 | # Output options (more information on Jekyll's site) 196 | timezone: "America/Toronto" 197 | markdown: kramdown 198 | highlighter: rouge 199 | permalink: /:year-:month-:day-:title/ 200 | paginate: 5 201 | 202 | kramdown: 203 | input: GFM 204 | 205 | # Default YAML values (more information on Jekyll's site) 206 | defaults: 207 | - 208 | scope: 209 | path: "" 210 | type: "posts" 211 | values: 212 | layout: "post" 213 | comments: true # add comments to all blog posts 214 | social-share: true # add social media sharing buttons to all blog posts 215 | - 216 | scope: 217 | path: "" # any file that's not a post will be a "page" layout by default 218 | values: 219 | layout: "page" 220 | 221 | # Exclude these files from production site 222 | exclude: 223 | - CHANGELOG.md 224 | - CNAME 225 | - Gemfile 226 | - Gemfile.lock 227 | - LICENSE 228 | - README.md 229 | - screenshot.png 230 | - docs/ 231 | 232 | plugins: 233 | - jekyll-paginate 234 | - jekyll-sitemap 235 | 236 | # Beautiful Jekyll / Dean Attali 237 | # 2fc73a3a967e97599c9763d05e564189 238 | 239 | -------------------------------------------------------------------------------- /_includes/social-networks-links.html: -------------------------------------------------------------------------------- 1 | 304 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## Unreleased version 2 | 3 | - Added `post_search` config setting that creates a Search button in the navbar (older websites need to set `post_search: true` to enable this feature) (#770) 4 | - Slightly reworked margins and position for avatar image to resolve an alignment issue on Safari. 5 | - Changed the width at which the navbar collapses to a higher threshold because most modern non-mobile browsers are >1000px 6 | - Fixed bug where navbar secondary level dropdown items didn't inherit the same colour as the primary navbar links 7 | - Fixed bug where the navbar "burger" collapsed button didn't always revert back to a light colour 8 | - Fixed bug where using an image as a navbar title did not render in GitHub Project pages that did not have a custom domain 9 | - Fixed issue where image thumbnails on the feed page were always forced into a square rather than maintaining a proper image aspect ratio 10 | - Added support for Patreon, Medium, and Itch.io in the social network links in the footer (#783, #788) 11 | - Fixed bug where special characters in the title led to broken share tags (#744) 12 | - Updated staticman from using v2 (public servers) to v3 (private servers) due to the public servers becoming obsolete (#775) 13 | - Added support for Cloudflare Analytics (#797) 14 | - Added Reddit in share options of posts (#815) 15 | 16 | ## v5.0.0 (2020-09-15) 17 | 18 | One of the major changes in this version is that a lot of time was spent on rethinking the entire SEO and social media sharing model (how a page looks on eg. Google, Twitter, Facebok). It was redesigned to be more simple and customizable. The new documentation has a section dedicated to SEO and social media sharing of a page. Unfortunately some changes that are not backwards-compatible had to be made. 19 | 20 | #### Breaking changes 21 | 22 | - Renamed `description` YAML parameter to `share-description` to be more clear 23 | - Renamed `description` config setting to `rss-description` since it was only used in RSS (the FAQ explains the difference between YAML parameters and config settings if you're confused) 24 | - Removed YAML parameter `use-site-title` (you can now specify the exact title using `share-title`) 25 | - Removed undocumented YAML parameters `meta-title` and `meta-description` 26 | - Removed `link-tags` config setting because it wasn't necessary. If you use tags, there will now always be a tags page created; if you don't use tags there won't be a tags page. 27 | - The YAML parameter `show-avatar` is now true by default. This has always been the case for GitHub Pages users, but not for `remote_theme` users. For consistency, it's now the default for everyone. (#715) 28 | 29 | #### New parameters and settings 30 | 31 | - Added `full-width` YAML parameter to allow having full-width pages 32 | - Added `feed_show_excerpt` config setting to show/hide the post excerpts on the feed page 33 | - Added `feed_show_tags` config setting to show/hide the list of tags on post previews on the feed page 34 | - Added `share-title` YAML parameter to give control over the search engine/social media title 35 | - Added `last-updated` YAML parameter to show a "Last Updated on" date for blog posts 36 | - Added `before-content` and `after-content` YAML parameters that allow you to add some common HTML before the main content of a page (below the title) or after the main content (above the footer). Works in a similar way to `footer-extra`. 37 | - Added `head-extra` YAML parameter which is similar to `footer-extra` but is used to include custom HTML code in a page's `` tag 38 | - Added `site-js` config setting to provide JavaScript files that are used on all pages in the site 39 | 40 | #### New features and improvements 41 | 42 | - Improved the `footer-extra` YAML parameter to support multiple files instead of only a single file 43 | - Added automatic navbar color detection (#702) 44 | - When `nav-short` is turned on, the avatar will also be shorter 45 | - Changed navbar and footer background colour to be slightly darker, for better contrast with the default white page background for accessibility reasons 46 | - Changed the behaviour of `site-css` to include site-wide CSS file **before** instead of after page-specific files 47 | - Renamed internal css/js files from "main" to "beautifuljekyll" to make it easier for users to troubleshoot 48 | - Added alt text to all images for better accessibility 49 | - Made thumbnail images square instead of circles, as users reported that circles cut off important parts of images 50 | 51 | #### Bug fixes 52 | 53 | - Fixed rendering issues with `nav-short` parameter that caused the body of the page to start too low 54 | - Fixed some CSS styles that broke during the bootstrap 4 migration (#716) 55 | 56 | #### Library upgrades 57 | 58 | - Upgraded kramdown to version 2.3.0 to fix security issues 59 | - Upgraded jQuery to version 3.5.1 to fix a couple security vulnerabilities with the previous version 60 | 61 | 62 | ## v4.1.0 (2020-08-08) 63 | 64 | - Added Open Graph `site_name` meta field to pages automatically 65 | - Added `text-col` config setting for main text color (#694) 66 | - Added `keywords` config setting to set the meta keywords on all pages (for SEO purposes) (#691) 67 | - Added `mobile-theme-col` config setting to allow a mobile theme colour (#692) 68 | - Added `site-css` config setting in the config file to provide CSS files that are used on all pages in the site (#695) 69 | - Added YAML parameter `description`: creates the meta description on a page, intended to provide a brief description of the page for search engines and when the page is shared (#690) 70 | 71 | ## v4.0.1 (2020-07-13) 72 | 73 | - Fixed staticman comments UI that was broken since the migration to bootstrap 4 74 | 75 | ## v4.0.0 (2020-07-12) 76 | 77 | - **BREAKING CHANGE** Replace `image` YAML parameter with `thumbnail-img` to be more clear 78 | - **MAJOR BEHAVIOUR CHANGE** Don't use the thumbnail as the avatar image 79 | - Cover image will automatically be used as thumbnail if none is provided 80 | - Image to share on social media will use the cover image or thumbnail if none is provided 81 | - All images (social media share, thumbnail, cover) can use either relative or absoluate paths. 82 | - Fixed issue where if a dropdown menu was the last item in the menu bar, it did not have a proper margin on the right 83 | - Added social network links: Mastodon (#646), Google Scholar, ORCID (#670) 84 | - Added support for sharing pages on new social network: VK (#657) 85 | - Use Open Graph type 'article' for blog posts (#669) 86 | - Use Twitter's large sumary card (large image) when there is a cover image, thumbnail image, or share image specified (#668) 87 | - Made post images in the feed page smaller on smaller devices 88 | - Fixed jQuery version in staticman (#671) 89 | 90 | ## v3.0.0 (2020-05-07) 91 | 92 | - **BREAKING CHANGE** Upgraded from Bootstrap 3.3.2 to 4.4.1. This involved a major rewrite of most components. This shouldn't affect any users unless you have custom HTML/CSS code which the new Bootstrap could have broken. 93 | - **BREAKING CHANGE** Renamed `bigimg` YAML parameter to `cover-img` 94 | - **BREAKING CHANGE** Removed `googlefonts` YAML parameter since googlefonts are just CSS so they can be loaded via `ext-css` 95 | - **BREAKING CHANGE** Upgraded from jQuery 1.11.2 to 3.4.2. This should not affect most people 96 | - Added `navbar-border-col` setting in the config file 97 | - Added accessibility features where possible 98 | - Made the theme completely responsive by rewriting all CSS to use 'rem' instead of 'px' 99 | - Rewrote and simplified some JavaScript code to use CSS or Bootstrap alternatives that weren't available in 2015 100 | - Removed most of the sample posts so that users only have two sample posts to learn from 101 | - Improvements to the README instructions 102 | 103 | ## v2.3.0 (2020-04-29) 104 | 105 | - Added YAML parameter `footer-extra` for including custom content in the footer 106 | - Fixed issue: linking to a specific part of a page resulted in scrolling too far (#69) 107 | - Added YAML parameter `nav-short` to have navbar permanently collapsed 108 | - Added social network link: Calendly 109 | - Fixed bug where RSS link in footer was showing even when turned off 110 | 111 | ## v2.2.0 (2020-04-27) 112 | 113 | - Added social network link: Telegram (#625) (thanks @mashed-potatoes) 114 | - Moved the demo site to an independent URL: https://beautifuljekyll.com 115 | - Major documentation overhaul and cleanup of old files 116 | - Fixed a few bugs from the remote_theme migration 117 | 118 | ## v2.0.0 (2020-04-26) 119 | 120 | - Beautiful-Jekyll v2.0.0 available as an official Ruby gem 121 | - Beautifull-Jekyll now supports the `remote_theme` config (#339) (thanks @gpotter2 and @skalee) 122 | - Consolidated the demo site, the ruby gem, and the master branch into one 123 | - Added a `home` layout and used it in the index page 124 | - Added readtime support for the post header (#622) (thanks @MutMatt and @rubyreads) 125 | - Removed the dependency on `_data` folder since it doesn't get copied when using `remote_theme` (#614) 126 | - Added support for configuring lang attribute on `html` tag (#608) (thanks @skalee) 127 | - Added ability to disable round logo (thanks @gpotter2) 128 | - Added support for Utterances comments (#596) (thanks @colynn) 129 | - Removed 'just-comments' as it's getting killed at the end of the year 130 | - Upgraded font-awesome to 5.12.1 (#587) (thanks @cketti) 131 | 132 | ## Prior to 2020 133 | 134 | **2018-12-24** Add support for Staticman comments (#440) (thanks @VincentTam) 135 | 136 | **2018-10-19** Move Google Analytics to the head (#419) (thanks @jpvicari) 137 | 138 | **2018-06-08** Add support for Facebook comments (#350) (thanks @npes87184) 139 | 140 | **2018-02-22** Automatically generate sitemap (#323) (thanks @JosemyDuarte) 141 | 142 | **2018-01-18** Add clickable tags to each post and a tags index page, works for GitHub sites (#307) (thanks @OCram85) 143 | 144 | **2018-01-14** Redo Dockerfile (#302) (thanks @jennydaman) 145 | 146 | **2018-01-06** More color personalization options (#297 and #299) (thanks @jennydaman) 147 | 148 | **2018-01-05** Abstract the social networks logic (thanks @OCram85) 149 | 150 | **2018-01-03** Avatar image no longer causes a ghost click (thanks @alefi87) 151 | 152 | **2017-10-16** Add GitHub buttons to posts (#265) (thanks @yonicd) 153 | 154 | **2017-09-04** Ability to change colour/image of navbar/footer/body 155 | 156 | **2017-08-17** Add support for notification, error, and warning boxes in markdown (#227) (thanks @OCram85) 157 | 158 | **2017-08-12** Add social buttons for twitch, yelp, and steam (#234) (thanks @TheRealBenForce) 159 | 160 | **2017-03-30** Make the footer contact links friendly for screen readers (thanks @eugenius1) 161 | 162 | **2017-03-30** Started a CHANGELOG file (thanks @eugenius1) 163 | 164 | **2017-01-28** Add Subresource Integrity (SRI) support (#164) (thanks @tony-ho) 165 | 166 | **2017-01-09** Add Google Tag Manager Integration (#157) (thanks @csarigoz) 167 | 168 | **2017-01-06** Add options to configure HTML document title (#154) (thanks @tony-ho) 169 | 170 | **2016-12-25** Allow dynamic images on each blog post (#143) (thanks @bbritten) 171 | 172 | **2016-12-15** Support `title-img` config param to have image in the navbar instead of text 173 | 174 | **2016-12-08** Add support for phone numbers in footer; fix #136 175 | 176 | **2016-12-06** Update gemfile (#134) (thanks @stephentuso) 177 | 178 | **2016-10-09** Add Docker deployment (#114) (thanks @mangar) 179 | 180 | **2016-08-06** Add social share buttons for posts (thanks @rtlee9) 181 | 182 | **2016-07-29** Add CSS styling to code chunks 183 | 184 | **2016-07-27** Add clickable tags that lead to a tag page (doesn't work for GitHub hosted sites) (thanks @epwalsh) 185 | 186 | **2016-07-21** Add support for twitter cards (sharing on Twitter will be better); fixes #70 187 | 188 | **2016-03-18** Support full-width images in page headers; fixes #37 189 | 190 | **2016-03-18** Support menus in navigation bar 191 | 192 | **2016-02-07** Avatar is now conditional (thanks @hristoyankov) 193 | 194 | **2016-02-02** Migrate (forced to...) to jekyll 3 195 | 196 | **2016-01-22** Make sure not to include JQuery twice, fixes #29 197 | 198 | **2015-11-19** Support external links in navigation bar; fixes #3 199 | 200 | ... Many small changes because the site was in its infancy 201 | 202 | **2015-03-12** Beautiful Jekyll version 0.0000001 is released! 203 | 204 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | [![](https://i.imgur.com/zNBkzj1.png)](https://beautifuljekyll.com/plans/) 2 | 3 | # Beautiful Jekyll 4 | 5 | [![xscode](https://img.shields.io/badge/Available%20on-xs%3Acode-blue?style=?style=plastic&logo=appveyor&logo=data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAMAAACdt4HsAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAAZQTFRF////////VXz1bAAAAAJ0Uk5T/wDltzBKAAAAlUlEQVR42uzXSwqAMAwE0Mn9L+3Ggtgkk35QwcnSJo9S+yGwM9DCooCbgn4YrJ4CIPUcQF7/XSBbx2TEz4sAZ2q1RAECBAiYBlCtvwN+KiYAlG7UDGj59MViT9hOwEqAhYCtAsUZvL6I6W8c2wcbd+LIWSCHSTeSAAECngN4xxIDSK9f4B9t377Wd7H5Nt7/Xz8eAgwAvesLRjYYPuUAAAAASUVORK5CYII=)](https://xscode.com/daattali/beautiful-jekyll) 6 | [![Gem Version](https://badge.fury.io/rb/beautiful-jekyll-theme.svg)](https://badge.fury.io/rb/beautiful-jekyll-theme) 7 | 8 | > By [Dean Attali](https://deanattali.com) · [Demo](https://beautifuljekyll.com/) 9 | 10 | **Beautiful Jekyll** is a ready-to-use template to help you create a beautiful website quickly. Perfect for personal sites, blogs, or simple project websites. [Check out a demo](https://beautifuljekyll.com) of what you'll get after just two minutes. You can also look at [my personal website](https://deanattali.com) or [my consulting website](https://attalitech.com) to see it in use, or see [examples of websites](http://beautifuljekyll.com/examples) other people created using this theme. 11 | 12 | **If you enjoy Beautiful Jekyll, please consider [supporting me](https://github.com/sponsors/daattali) for over 5 years of development (and to unlock rewards!) ❤** 13 | 14 | ## Table of contents 15 | 16 | - [Features](#features) 17 | - [Sponsors 🏆](#sponsors) 18 | - [**Build your website in 3 steps**](#build-your-website-in-3-steps) 19 | - [Plans](#plans) 20 | - [Add your own content](#add-your-own-content) 21 | - [Customizing parameters for each page](#customizing-parameters-for-each-page) 22 | - [Supported parameters](#supported-parameters) 23 | - [Featured users (success stories!)](#featured-users-success-stories) 24 | - [FAQ and support](#faq-and-support) 25 | - [Credits and contributions](#credits) 26 | 27 | # Features 28 | 29 | __Check out [*What's New?*](https://beautifuljekyll.com/updates/) to see the latest features.__ 30 | 31 | - **SIMPLE**: The primary goal of Beautiful Jekyll is to allow literally *anyone* to create a website in a few minutes. 32 | - **Modern**: Uses the latest best practices and technologies to achieve nearly perfect scores on Google Chrome's Audit. 33 | - **Mobile-first**: Designed to look great on both large-screen and small-screen (mobile) devices. 34 | - **Highly customizable**: Many personalization settings such as changing the background colour/image, adding a logo. 35 | - **Flexible usage**: Use Beautiful Jekyll directly on GitHub or via a Ruby gem - choose the best [development method](#build-your-website-in-3-steps) for you. 36 | - **Battle-tested**: By using Beautiful Jekyll, you'll be joining 50,000+ users enjoying this theme since 2015. 37 | - **SEO and social media support**: Customize how your site looks on Google and when shared on social media. 38 | - **Comments support**: Add comments to any page using either [Disqus](https://disqus.com/), [Facebook comments](https://developers.facebook.com/docs/plugins/comments), [Utterances](https://utteranc.es/), or [Staticman](https://staticman.net). 39 | - **Tags**: Any blog post can be tagged with keywords, and an index page is automatically generated. 40 | - **Analytics**: Easily integrate Google Analytics, or other analytics platforms, to track visits to your website. 41 | - **Search**: Let users easily find any page using a Search button in the navigation bar. 42 | - **Photos support**: Any page can have a full-width cover photo and thumbnail. 43 | - **RSS**: An RSS feed is automatically created, so you can even host a podcast easily with Beautiful Jekyll. 44 | 45 |

Sponsors 🏆

46 | 47 | Developing and maintaining Beautiful Jekyll takes a lot of time and effort - thank you to anyone who helps fund this effort! 48 | 49 | - [Matt Artist](https://mja00.dev/) 50 | - [\_hyp3ri0n](https://hyperiongray.com) 51 | 52 | [Become a sponsor for Beautiful Jekyll and unlock special rewards\!](https://github.com/sponsors/daattali/sponsorships?tier_id=39856) 53 | 54 | # Build your website in 3 steps 55 | 56 | There's a very easy way to use this theme, and there's a hard way. For most people (including myself!), the easy route is recommended. If you're an advanced user and want to tinker with the hard way (using ruby gems), then [skip the easy way](https://github.com/daattali/beautiful-jekyll#the-hard-way-using-ruby-gems) if you know what you're doing. 57 | 58 | ## The easy way (recommended!) 59 | 60 | Getting started is *literally* as easy as 1-2-3 :smile: 61 | 62 | Scroll down to see the steps involved, but here is a 40-second video just as a reference as you work through the steps. If you don't already have a [GitHub account](https://github.com/join), you'll need to sign up. 63 | 64 | ![Installation steps](assets/img/install-steps.gif) 65 | 66 | ### 1. Fork this project 67 | 68 | Fork this project by clicking the __*Fork*__ button at the top right corner of this page. Forking means that you now copied this entire project and all the files into your account. 69 | 70 | ### 2. Rename the project to `.github.io` 71 | 72 | Click on __*Settings*__ at the top (the cog icon) and on that page you'll have an option to rename the project (*Repository name*). This will create a website with the **Beautiful Jekyll** template that will be available at `https://.github.io` within a couple minutes (check out the [FAQ](https://beautifuljekyll.com/faq/#custom-domain) if you want to use a different project name). If after a few minutes your website is still not ready, try making any edit to any file, just to force GitHub to re-build your site. 73 | 74 | ### 3. Customize your website settings 75 | 76 | Edit the `_config.yml` file to change any settings you want. To edit the file, click on it to view the file and then click on the pencil icon to edit it (watch the video tutorial above if you're confused). The settings in the file are self-explanatory and there are comments inside the file to help you understand what each setting does. Any line that begins with a hashtag (`#`) is a comment, and the other lines are actual settings. 77 | 78 | Note that in the video above only one setting in the `_config.yml` file is edited. **You should actually go through the rest of the settings as well. Don't be lazy, go through all the settings!** 79 | 80 | ### 4. Congratulations! You have a website! 81 | 82 | After you save your changes to the `_config.yml` file (by clicking on *Commit changes* as the video tutorial shows), your website should be ready in a minute or two at `https://.github.io`. Every time you make a change to any file, your website will get rebuilt and should be updated in about a minute or so. Your website will be initialized with several sample blog posts and a couple other pages. 83 | 84 | Note that this was the easy way to *create* your website, but it does come at a cost: when Beautiful Jekyll gains new features in the future, *updating* your website to include all the latest features is cumbersome. See the [FAQ](https://beautifuljekyll.com/faq/#updating) for help with upgrading in the future. 85 | 86 | ## The hard way (using ruby gems) 87 | 88 | If you followed the easy method above, then you already have your site and you can skip this section! If you want to use Beautiful Jekyll as a ruby gem instead, follow the [advanced installation instructions](https://beautifuljekyll.com/getstarted/#install-steps-hard). This is harder to set up initially, but it makes it super easy to keep your site up to date with Beautiful Jekyll when more features are added in the future. 89 | 90 | # Plans 91 | 92 | Beautiful Jekyll is, and always will be, free. But if you want to remove the Beautiful Jekyll ad from your website, use a Dark Mode skin, unlock other special rewards, or simply support the development efforts, [check out the different plans](https://beautifuljekyll.com/plans). 93 | 94 | # Add your own content 95 | 96 | To add pages to your site, you can either write a markdown file (`.md`) or you can write an HTML file. It's much easier to write markdown than HTML, so that's the recommended approach ([here's a great tutorial](https://markdowntutorial.com/) if you need to learn markdown in 5 minutes). 97 | 98 | To see an example of a markdown file, click on any file that ends in `.md`, for example [`aboutme.md`](./aboutme.md). On that page you can see some nicely formatted text (there's a word in bold, a link, a few bullet points), and if you click on the pencil icon to edit the file, you'll see the markdown code that generated the pretty text. Very easy! 99 | 100 | In contrast, look at [`tags.html`](./tags.html). That's how your write HTML - not as pretty. So stick with markdown if you don't know HTML. 101 | 102 | Any markdown or HTML file that you create will be available on your website under `https://.github.io/`. For example, if you create a file `about.md` (or `about.html`) then it'll exist at `https://.github.io/about`. 103 | 104 | Files you create inside the [`_posts`](./_posts) directory will be treated as blog entries. You can look at the existing files there to get an idea of how to write blog posts. Note the format of the blog post files - they must follow the naming convention of `YEAR-MONTH-DAY-title.md`. After you successfully add your own post, you can delete the existing files inside [`_posts`](./_posts) to remove the sample posts, as those are just demo posts to help you learn. 105 | 106 | # Customizing parameters for each page 107 | 108 | **One last important thing**: In order to have your new pages use this template and not just be plain HTML pages, **you must add [YAML front matter](https://jekyllrb.com/docs/front-matter/) to the top of each page**: 109 | 110 | 111 | ``` 112 | --- 113 | --- 114 | ``` 115 | 116 | This is where you'll be able to give each page some extra parameters (such as a title, a subtitle, an image, etc - [below is a list of all parameters](#supported-parameters)). Add any parameters you want between these two dashed lines, for example: 117 | 118 | ``` 119 | --- 120 | title: Contact me 121 | subtitle: Here you'll find all the ways to get in touch with me 122 | --- 123 | ``` 124 | 125 | If you don't want to use any parameters on a page, you still need to use the two dashed lines. If you don't, then your file will be shown as-is without the Beautiful Jekyll template. 126 | 127 | You can look at the top of [`aboutme.md`](https://raw.githubusercontent.com/daattali/beautiful-jekyll/master/aboutme.md) as an example. 128 | 129 | **Important takeaway: ALWAYS add the YAML front matter, which is two lines of three dashes, to EVERY page. If you have any parameters, they go between the two lines.** 130 | 131 | # Supported parameters 132 | 133 | Below is a list of the parameters that Beautiful Jekyll supports (any of these can be added to the YAML front matter of any page). Remember to also look in the `_config.yml` file to see additional site-wide settings. 134 | 135 | ## Main parameters 136 | 137 | These are the basic YAML parameters that you are most likely to use on most pages. 138 | 139 | Parameter | Description 140 | ----------- | ----------- 141 | title | Page or blog post title 142 | subtitle | Short description of page or blog post that goes under the title 143 | tags | List of tags to categorize the post. Separate the tags with commas and place them inside square brackets. Example: `[personal, analysis, finance]` 144 | cover-img | Include a large full-width image at the top of the page. You can either provide the path to a single image (eg. `"/path/to/img"`) , or a list of images to cycle through (eg. `["/path/img1", "/path/img2"]`). If you want to add a caption to an image, then you must use the list notation (use `[]` even if you have only one image), and each image should be provided as `"/path/to/img" : "Caption of image"`. 145 | thumbnail-img | For blog posts, if you want to add a thumbnail that will show up in the feed, use `thumbnail-img: /path/to/image`. If no thumbnail is provided, then `cover-img` will be used as the thumbnail. You can use `thumbnail-img: ""` to disable a thumbnail. 146 | comments | If you want do add comments to a specific page, use `comments: true`. Comments only work if you enable one of the comments providers (Facebook, disqus, staticman, utterances) in `_config.yml` file. Comments are automatically enabled on blog posts but not on other pages; to turn comments off for a specific post, use `comments: false`. 147 | 148 | ## Parameters for SEO and social media sharing 149 | 150 | These parameters let you control what information shows up when a page is shown in a search engine (such as Google) or gets shared on social media (such as Twitter/Facebook). 151 | 152 | Parameter | Description 153 | ----------- | ----------- 154 | share-title | A title for the page. If not provided, then `title` will be used, and if that's missing then the site title (from `_config.yml`) is used. 155 | share-description | A brief description of the page. If not provided, then `subtitle` will be used, and if that's missing then an excerpt from the page content is used. 156 | share-img | The image to show. If not provided, then `cover-img` or `thumbnail-img` will be used if one of them is provided. 157 | 158 | ## Less commonly used parameters 159 | 160 | These are parameters that you may not use often, but can come in handy sometimes. 161 | 162 | Parameter | Description 163 | ----------- | ----------- 164 | readtime | If you want a post to show how many minutes it will take to read it, use `readtime: true`. 165 | show-avatar | If you have an avatar configured in the `_config.yml` but you want to turn it off on a specific page, use `show-avatar: false`. 166 | social-share | By default, every blog post has buttons to share the page on social media. If you want to turn this feature off, use `social-share: false`. 167 | nav-short | By default, the navigation bar gets shorter after scrolling down the page. If you want the navigation bar to always be short on a certain page, use `nav-short: true` 168 | gh-repo | If you want to show GitHub buttons at the top of a post, this sets the GitHub repo name (eg. `daattali/beautiful-jekyll`). You must also use the `gh-badge` parameter to specify what buttons to show. 169 | gh-badge | Select which GitHub buttons to display. Available options are: [star, watch, fork, follow]. You must also use the `gh-repo` parameter to specify the GitHub repo. 170 | last-updated | If you want to show that a blog post was updated after it was originally released, you can specify an "Updated on" date. 171 | layout | What type of page this is (default is `post` for blog posts and `page` for other pages). See _Page types_ section below for more information. 172 | 173 | ## Advanced parameters 174 | 175 | These are advanced parameters that are only useful for people who need very fine control over their website. 176 | 177 | Parameter | Description 178 | ----------- | ----------- 179 | footer-extra | If you want to include extra content below the social media icons in the footer, create an HTML file in the `_includes/` folder (for example `_includes/myinfo.html`) and set `footer-extra` to the name of the file (for example `footer-extra: myinfo.html`). Accepts a single file or a list of files. 180 | before-content | Similar to `footer-extra`, but used for including HTML before the main content of the page (below the title). 181 | after-content | Similar to `footer-extra`, but used for including HTML after the main content of the page (above the footer). 182 | head-extra | Similar to `footer-extra`, but used if you have any HTML code that needs to be included in the `` tag of the page. 183 | language | HTML language code to be set on the page's <html> element. 184 | full-width | By default, page content is constrained to a standard width. Use `full-width: true` to allow the content to span the entire width of the window. 185 | js | List of local JavaScript files to include in the page (eg. `/assets/js/mypage.js`) 186 | ext-js | List of external JavaScript files to include in the page (eg. `//cdnjs.cloudflare.com/ajax/libs/underscore.js/1.8.2/underscore-min.js`). External JavaScript files that support [Subresource Integrity (SRI)](https://developer.mozilla.org/en-US/docs/Web/Security/Subresource_Integrity) can be specified using the `href` and `sri` parameters eg.
`href: "//code.jquery.com/jquery-3.1.1.min.js"`
`sri: "sha256-hVVnYaiADRTO2PzUGmuLJr8BLUSjGIZsDYGmIJLv2b8="` 187 | css | List of local CSS files to include in the page 188 | ext-css | List of external CSS files to include in the page. External CSS files using SRI (see `ext-js` parameter) are also supported. 189 | 190 | ## Page types 191 | 192 | - **post** - To write a blog post, add a markdown or HTML file in the `_posts` folder. As long as you give it YAML front matter (the two lines of three dashes), it will automatically be rendered like a blog post. Look at the existing blog post files to see examples of how to use YAML parameters in blog posts. 193 | - **page** - Any page outside the `_posts` folder that uses YAML front matter will have a very similar style to blog posts. 194 | - **home** - The home layout is meant to act as the homepage of your blog posts - it will display all your blog posts, sorted from newest to oldest. A file using the `home` layout must be named `index.html` (not `index.md` or anything else!). 195 | - **minimal** - If you want to create a page with minimal styling (ie. without the bulky navigation bar and footer), assign `layout: minimal` to the YAML front matter. 196 | - If you want to completely bypass the template engine and just write your own HTML page, simply omit the YAML front matter. Only do this if you know how to write HTML! 197 | 198 | # Featured users (success stories!) 199 | 200 | Visit the [Official website](http://beautifuljekyll.com/examples) to see sample websites using Beautiful Jekyll. 201 | 202 | If you'd like to showcase yourself and join this list, [upgrading to the Individual plan](https://github.com/sponsors/daattali/sponsorships?&tier_id=7362) will give you that publicity plus some other rewards! 203 | 204 | # FAQ and support 205 | 206 | Visit the [official FAQ page](https://beautifuljekyll.com/faq) for answers to commonly asked questions. 207 | 208 | Beautiful Jekyll is used by 50,000+ people with wildly varying degrees of web skills, so it's impossible to answer all the questions that may arise. For any question that's not specifically related to Beautiful Jekyll and is more about Jekyll or web development in general, the answer can often be found on Google, in the [Jekyll documentation](https://jekyllrb.com/), or on the [Jekyll support forum](https://talk.jekyllrb.com/). 209 | 210 | To receive support, select one of the [different plans](https://beautifuljekyll.com/plans) Beautiful Jekyll offers. You can also use the [Discussions](https://github.com/daattali/beautiful-jekyll/discussions) area to try to get help from the community. 211 | 212 | # Contributions 213 | 214 | Thank you to [all past contributors](https://github.com/daattali/beautiful-jekyll/graphs/contributors). If you find any problems or would like to contribute in any way, feel free to create a pull request/open an issue/send me a message. 215 | 216 | You can also contribute by becoming an [official sponsor](https://github.com/sponsors/daattali/sponsorships?tier_id=39856) to help keep Beautiful Jekyll well-maintained. 217 | 218 | # Credits 219 | 220 | This template was not made *entirely* from scratch. I'd like to give special thanks to [Jekyll Now](https://github.com/barryclark/jekyll-now) and [Bootstrap Clean Blog](https://github.com/IronSummitMedia/startbootstrap-clean-blog), from whom I've taken several ideas initially. 221 | 222 | I'd also like to thank [Dr. Jekyll's Themes](https://drjekyllthemes.github.io/), [Jekyll Themes](http://jekyllthemes.org/), and another [Jekyll Themes](http://jekyllrc.github.io/jekyllthemes/) for featuring Beautiful Jekyll in their Jekyll theme directories. 223 | -------------------------------------------------------------------------------- /_data/ui-text.yml: -------------------------------------------------------------------------------- 1 | # User interface text and labels 2 | 3 | # English (default) 4 | # ----------------- 5 | en: &DEFAULT_EN 6 | comments_label : "Leave a comment" 7 | comments_title : "Comments" 8 | comment_form_info : "Your email address will not be published. Required fields are marked" 9 | comment_form_comment_label : "Comment" 10 | comment_form_md_info : "Markdown is supported." 11 | comment_form_name_label : "Name" 12 | comment_form_email_label : "Email address" 13 | comment_form_website_label : "Website (optional)" 14 | comment_btn_submit : "Submit comment" 15 | comment_btn_submitted : "Submitted" 16 | comment_success_msg : "Thanks for your comment! It will show on the site once it has been approved." 17 | comment_error_msg : "Sorry, there was an error with your submission. Please make sure all required fields have been completed and try again." 18 | en-US: 19 | <<: *DEFAULT_EN 20 | en-CA: 21 | <<: *DEFAULT_EN 22 | en-GB: 23 | <<: *DEFAULT_EN 24 | en-AU: 25 | <<: *DEFAULT_EN 26 | 27 | # Spanish 28 | # ------- 29 | es: &DEFAULT_ES 30 | comments_label : "Dejar un commentario" 31 | comments_title : "Comentar" 32 | comment_form_info : "Su dirección de correo no será publicada. Se han resaltado los campos requeridos" 33 | comment_form_comment_label : "Comentario" 34 | comment_form_md_info : "Markdown está soportado." 35 | comment_form_name_label : "Nombre" 36 | comment_form_email_label : "Dirección de E-mail" 37 | comment_form_website_label : "Sitio web (opcional)" 38 | comment_btn_submit : "Enviar Commentario" 39 | comment_btn_submitted : "Enviado" 40 | comment_success_msg : "Gracias por su comentario!, Este se visualizará en el sitio una vez haya sido aprobado" 41 | comment_error_msg : "Lo sentimos, ha ocurrido un error al enviar su comentario. Por favor asegurese que todos los campos han sido diligenciados e intente de nuevo" 42 | es-ES: 43 | <<: *DEFAULT_ES 44 | es-CO: 45 | <<: *DEFAULT_ES 46 | 47 | # French 48 | # ------ 49 | fr: &DEFAULT_FR 50 | comments_label : "Laisser un commentaire" 51 | comments_title : "Commentaires" 52 | comment_form_info : "Votre adresse email ne sera pas visible. Les champs obligatoires sont marqués" 53 | comment_form_comment_label : "Commentaire" 54 | comment_form_md_info : "Markdown est supporté." 55 | comment_form_name_label : "Nom" 56 | comment_form_email_label : "Adresse mail" 57 | comment_form_website_label : "Site web (optionnel)" 58 | comment_btn_submit : "Envoyer" 59 | comment_btn_submitted : "Envoyé" 60 | comment_success_msg : "Merci pour votre commentaire, il sera visible sur le site une fois approuvé." 61 | comment_error_msg : "Désolé, une erreur est survenue lors de la soumission. Vérifiez que les champs obligatoires ont été remplis et réessayez." 62 | fr-FR: 63 | <<: *DEFAULT_FR 64 | fr-BE: 65 | <<: *DEFAULT_FR 66 | fr-CH: 67 | <<: *DEFAULT_FR 68 | 69 | # Turkish 70 | # ------- 71 | tr: &DEFAULT_TR 72 | comments_label : "Yorum yapın" 73 | comments_title : "Yorumlar" 74 | comment_form_info : "Email adresiniz gösterilmeyecektir. Zorunlu alanlar işaretlenmiştir" 75 | comment_form_comment_label : "Yorumunuz" 76 | comment_form_md_info : "Markdown desteklenmektedir." 77 | comment_form_name_label : "Adınız" 78 | comment_form_email_label : "Email adresiniz" 79 | comment_form_website_label : "Websiteniz (opsiyonel)" 80 | comment_btn_submit : "Yorum Yap" 81 | comment_btn_submitted : "Gönderildi" 82 | comment_success_msg : "Yorumunuz için teşekkürler! Yorumunuz onaylandıktan sonra sitede gösterilecektir." 83 | comment_error_msg : "Maalesef bir hata oluştu. Lütfen zorunlu olan tüm alanları doldurduğunuzdan emin olun ve sonrasında tekrar deneyin." 84 | tr-TR: 85 | <<: *DEFAULT_TR 86 | 87 | # Portuguese 88 | # ---------- 89 | pt: &DEFAULT_PT 90 | comments_label : "Deixe um Comentário" 91 | comments_title : "Comentários" 92 | comment_form_info : "O seu endereço email não será publicado. Os campos obrigatórios estão assinalados" 93 | comment_form_comment_label : "Comentário" 94 | comment_form_md_info : "Markdown é suportado." 95 | comment_form_name_label : "Nome" 96 | comment_form_email_label : "Endereço Email" 97 | comment_form_website_label : "Site (opcional)" 98 | comment_btn_submit : "Sumbeter Comentário" 99 | comment_btn_submitted : "Submetido" 100 | comment_success_msg : "Obrigado pelo seu comentário! Será visível no site logo que aprovado." 101 | comment_error_msg : "Lamento, ocorreu um erro na sua submissão. Por favor verifique se todos os campos obrigatórios estão corretamente preenchidos e tente novamente." 102 | pt-PT: 103 | <<: *DEFAULT_PT 104 | # Brazilian Portuguese 105 | pt-BR: 106 | comments_label : "Deixe um comentário" 107 | comments_title : 108 | comment_form_info : "Seu email não será publicado. Os campos obrigatórios estão marcados" 109 | comment_form_comment_label : "Comentário" 110 | comment_form_md_info : "Markdown é suportado." 111 | comment_form_name_label : "Nome" 112 | comment_form_email_label : "Email" 113 | comment_form_website_label : "Site (opcional)" 114 | comment_btn_submit : "Enviar Comentário" 115 | comment_btn_submitted : "Enviado" 116 | comment_success_msg : "Obrigado pelo seu comentário! Ele aparecerá no site assim que for aprovado." 117 | comment_error_msg : "Desculpe, ocorreu um erro no envio. Por favor verifique se todos os campos obrigatórios foram preenchidos e tente novamente." 118 | 119 | # Italian 120 | # ------- 121 | it: &DEFAULT_IT 122 | comments_label : "Scrivi un commento" 123 | comments_title : 124 | comment_form_info : "Il tuo indirizzo email non sarà pubblicato. Sono segnati i campi obbligatori" 125 | comment_form_comment_label : "Commenta" 126 | comment_form_md_info : "Il linguaggio Markdown è supportato" 127 | comment_form_name_label : "Nome" 128 | comment_form_email_label : "Indirizzo email" 129 | comment_form_website_label : "Sito Web (opzionale)" 130 | comment_btn_submit : "Invia commento" 131 | comment_btn_submitted : "Inviato" 132 | comment_success_msg : "Grazie per il tuo commento! Verrà visualizzato nel sito una volta che sarà approvato." 133 | comment_error_msg : "C'è stato un errore con il tuo invio. Assicurati che tutti i campi richiesti siano stati completati e riprova." 134 | it-IT: 135 | <<: *DEFAULT_IT 136 | 137 | # Chinese (zh-CN Chinese - China) 138 | # -------------------------------- 139 | zh: &DEFAULT_ZH_HANS 140 | comments_label : "留下评论" 141 | comments_title : "评论" 142 | comment_form_info : "您的电子邮箱地址并不会被展示。请填写标记为必须的字段。" 143 | comment_form_comment_label : "评论" 144 | comment_form_md_info : "Markdown语法已支持。" 145 | comment_form_name_label : "姓名" 146 | comment_form_email_label : "电子邮箱" 147 | comment_form_website_label : "网站(可选)" 148 | comment_btn_submit : "提交评论" 149 | comment_btn_submitted : "已提交" 150 | comment_success_msg : "感谢您的评论!被批准后它会立即在此站点展示。" 151 | comment_error_msg : "很抱歉,您的提交存在错误。请确保所有必填字段都已填写正确,然后再试一次。" 152 | zh-CN: 153 | <<: *DEFAULT_ZH_HANS 154 | zh-SG: 155 | <<: *DEFAULT_ZH_HANS 156 | # Taiwan (Traditional Chinese) 157 | zh-TW: &DEFAULT_ZH_HANT 158 | comments_label : "留言" 159 | comments_title : "留言內容" 160 | comment_form_comment_label : "留言內容" 161 | comment_form_md_info : "支援Markdown語法。" 162 | comment_form_name_label : "名字" 163 | comment_form_email_label : "電子信箱帳號" 164 | comment_form_website_label : "網頁 (可選填)" 165 | comment_btn_submit : "送出留言" 166 | comment_btn_submitted : "已送出" 167 | comment_success_msg : "感謝您的留言! 審核後將會顯示在站上。" 168 | comment_error_msg : "抱歉,部份資料輸入有問題。請確認資料填寫正確後再試一次。" 169 | zh-HK: 170 | <<: *DEFAULT_ZH_HANT 171 | 172 | # German / Deutsch 173 | # ---------------- 174 | de: &DEFAULT_DE 175 | comments_label : "Hinterlasse einen Kommentar" 176 | comments_title : "Kommentare" 177 | comment_form_info : "Die E-Mail Adresse wird nicht veröffentlicht. Benötigte Felder sind markiert" 178 | comment_form_comment_label : "Kommentar" 179 | comment_form_md_info : "Markdown wird unterstützt." 180 | comment_form_name_label : "Name" 181 | comment_form_email_label : "E-Mail-Adresse" 182 | comment_form_website_label : "Webseite (optional)" 183 | comment_btn_submit : "Kommentar absenden" 184 | comment_btn_submitted : "Versendet" 185 | comment_success_msg : "Danke für den Kommentar! Er wird nach Prüfung auf der Seite angezeigt." 186 | comment_error_msg : "Entschuldigung, es gab einen Fehler. Bitte fülle alle benötigten Felder aus und versuche es erneut." 187 | de-DE: 188 | <<: *DEFAULT_DE 189 | de-AT: 190 | <<: *DEFAULT_DE 191 | de-CH: 192 | <<: *DEFAULT_DE 193 | de-BE: 194 | <<: *DEFAULT_DE 195 | de-LI: 196 | <<: *DEFAULT_DE 197 | de-LU: 198 | <<: *DEFAULT_DE 199 | 200 | # Nepali (Nepal) 201 | # -------------- 202 | ne: &DEFAULT_NE 203 | comments_label : "टिप्पणी दिनुहोस्" 204 | comments_title : "टिप्पणीहरू" 205 | comment_form_info : "तपाइँको इमेल ठेगाना प्रकाशित गरिने छैन।आवश्यक जानकारीहरुमा चिन्ह लगाइको छ" 206 | comment_form_comment_label : "टिप्पणी" 207 | comment_form_md_info : "मार्कडाउन समर्थित छ।" 208 | comment_form_name_label : "नाम" 209 | comment_form_email_label : "इमेल ठेगाना" 210 | comment_form_website_label : "वेबसाइट (वैकल्पिक)" 211 | comment_btn_submit : "टिप्पणी दिनुहोस् " 212 | comment_btn_submitted : "टिप्पणी भयो" 213 | comment_success_msg : "तपाईंको टिप्पणीको लागि धन्यवाद! एक पटक यो अनुमोदन गरेपछी यो साइटमा देखाउनेछ।" 214 | comment_error_msg : "माफ गर्नुहोस्, तपाईंको टिप्पणी त्रुटि थियो।सबै आवश्यक जानकारीहरु पूरा गरिएको छ भने निश्चित गर्नुहोस् र फेरि प्रयास गर्नुहोस्।" 215 | ne-NP: 216 | <<: *DEFAULT_NE 217 | 218 | # Korean 219 | # ------ 220 | ko: &DEFAULT_KO 221 | comments_label : "댓글남기기" 222 | comments_title : "댓글" 223 | comment_form_info : "이메일은 공개되지 않습니다. 작성 필요 필드:" 224 | comment_form_comment_label : "댓글" 225 | comment_form_md_info : "마크다운을 지원합니다." 226 | comment_form_name_label : "이름" 227 | comment_form_email_label : "이메일" 228 | comment_form_website_label : "웹사이트(선택사항)" 229 | comment_btn_submit : "댓글 등록" 230 | comment_btn_submitted : "등록됨" 231 | comment_success_msg : "감사합니다! 댓글이 머지된 후 확인하실 수 있습니다." 232 | comment_error_msg : "댓글 등록에 문제가 있습니다. 필요 필드를 작성했는지 확인하고 다시 시도하세요." 233 | ko-KR: 234 | <<: *DEFAULT_KO 235 | 236 | # Russian / Русский 237 | # ----------------- 238 | ru: &DEFAULT_RU 239 | comments_label : "Оставить комментарий" 240 | comments_title : "Комментарии" 241 | comment_form_info : "Ваш адрес электронной почты не будет опубликован. Обязательные поля помечены" 242 | comment_form_comment_label : "Комментарий" 243 | comment_form_md_info : "Поддерживается синтаксис Markdown." 244 | comment_form_name_label : "Имя" 245 | comment_form_email_label : "Электронная почта" 246 | comment_form_website_label : "Ссылка на сайт (необязательно)" 247 | comment_btn_submit : "Оставить комментарий" 248 | comment_btn_submitted : "Отправлено" 249 | comment_success_msg : "Спасибо за Ваш комментарий! Он будет опубликован на сайте после проверки." 250 | comment_error_msg : "К сожалению, произошла ошибка с отправкой комментария. Пожалуйста, убедитесь, что все обязательные поля заполнены и попытайтесь снова." 251 | ru-RU: 252 | <<: *DEFAULT_RU 253 | 254 | # Lithuanian / Lietuviškai 255 | # ------------------------ 256 | lt: &DEFAULT_LT 257 | comments_label : "Palikti komentarą" 258 | comments_title : "Komentaras" 259 | comment_form_info : "El. pašto adresas nebus viešinamas. Būtini laukai pažymėti" 260 | comment_form_comment_label : "Komentaras" 261 | comment_form_md_info : "Markdown palaikomas." 262 | comment_form_name_label : "Vardas" 263 | comment_form_email_label : "El. paštas" 264 | comment_form_website_label : "Tinklapis (nebūtina)" 265 | comment_btn_submit : "Komentuoti" 266 | comment_btn_submitted : "Įrašytas" 267 | comment_success_msg : "Ačiū už komentarą! Jis bus parodytas kai bus patvirtintas." 268 | comment_error_msg : "Atleiskite, įvyko netikėta klaida įrašant komentarą. Pasitikrinkite ar užpildėte visus būtinus laukus ir pamėginkite dar kartą." 269 | lt-LT: 270 | <<: *DEFAULT_LT 271 | 272 | # Greek 273 | # ----- 274 | gr: &DEFAULT_GR 275 | comments_label : "Αφήστε ένα σχόλιο" 276 | comments_title : "Σχόλια" 277 | comment_form_info : "Η διεύθυνση email σας δεν θα δημοσιευθεί. Τα απαιτούμενα πεδία εμφανίζονται με αστερίσκο" 278 | comment_form_comment_label : "Σχόλιο" 279 | comment_form_md_info : "Το πεδίο υποστηρίζει Markdown." 280 | comment_form_name_label : "Όνομα" 281 | comment_form_email_label : "Διεύθυνση email" 282 | comment_form_website_label : "Ιστοσελίδα (προαιρετικό)" 283 | comment_btn_submit : "Υπόβαλε ένα σχόλιο" 284 | comment_btn_submitted : "Έχει υποβληθεί" 285 | comment_success_msg : "Ευχαριστούμε για το σχόλιό σας! Θα εμφανιστεί στην ιστοσελίδα αφού εγκριθεί." 286 | comment_error_msg : "Λυπούμαστε, παρουσιάστηκε σφάλμα με την υποβολή σας. Παρακαλούμε βεβαιωθείτε ότι έχετε όλα τα απαιτούμενα πεδία συμπληρωμένα και δοκιμάστε ξανά." 287 | gr-GR: 288 | <<: *DEFAULT_GR 289 | 290 | # Swedish 291 | # ------- 292 | sv: &DEFAULT_SV 293 | comments_label : "Lämna en kommentar" 294 | comments_title : "Kommentarer" 295 | comment_form_info : "Din e-post adress kommer inte att publiceras. Obligatoriska fält är markerade" 296 | comment_form_comment_label : "Kommentar" 297 | comment_form_md_info : "Använd Markdown för text-formateringen." 298 | comment_form_name_label : "Namn" 299 | comment_form_email_label : "E-post adress" 300 | comment_form_website_label : "Webdsida (valfritt)" 301 | comment_btn_submit : "Skicka en kommentar" 302 | comment_btn_submitted : "Kommentaren har tagits emot" 303 | comment_success_msg : "Tack för din kommentar! Den kommer att visas på sidan så fort den har godkännts." 304 | comment_error_msg : "Tyvärr det har blivit något fel i en av fälten, se till att du fyller i alla rutor och försök igen." 305 | sv-SE: 306 | <<: *DEFAULT_SV 307 | sv-FI: 308 | <<: *DEFAULT_SV 309 | 310 | # Dutch 311 | # ----- 312 | nl: &DEFAULT_NL 313 | comments_label : "Laat een reactie achter" 314 | comments_title : "Commentaren" 315 | comment_form_info : "Uw e-mailadres wordt niet gepubliceerd. Verplichte velden zijn gemarkeerd" 316 | comment_form_comment_label : "Commentaar" 317 | comment_form_md_info : "Markdown wordt ondersteund." 318 | comment_form_name_label : "Naam" 319 | comment_form_email_label : "E-mailadres" 320 | comment_form_website_label : "Website (optioneel)" 321 | comment_btn_submit : "Commentaar toevoegen" 322 | comment_btn_submitted : "Toegevoegd" 323 | comment_success_msg : "Bedankt voor uw reactie! Het zal op de site worden weergegeven zodra het is goedgekeurd." 324 | comment_error_msg : "Sorry, er is een fout opgetreden bij uw inzending. Zorg ervoor dat alle vereiste velden zijn voltooid en probeer het opnieuw." 325 | nl-BE: 326 | <<: *DEFAULT_NL 327 | nl-NL: 328 | <<: *DEFAULT_NL 329 | 330 | # Indonesian 331 | # ---------- 332 | id: &DEFAULT_ID 333 | comments_label : "Tinggalkan komentar" 334 | comments_title : "Komentar" 335 | comment_form_info : "Email Anda tidak akan dipublish. Kolom yang diperlukan ditandai" 336 | comment_form_comment_label : "Komentar" 337 | comment_form_md_info : "Markdown disupport." 338 | comment_form_name_label : "Nama" 339 | comment_form_email_label : "Alamat email" 340 | comment_form_website_label : "Website (opsional)" 341 | comment_btn_submit : "Submit Komentar" 342 | comment_btn_submitted : "Telah disubmit" 343 | comment_success_msg : "Terimakasih atas komentar Anda! Komentar ini akan tampil setelah disetujui." 344 | comment_error_msg : "Maaf, ada kesalahan pada submisi Anda. Pastikan seluruh kolom sudah dilengkapi dan coba kembali." 345 | id-ID: 346 | <<: *DEFAULT_ID 347 | 348 | # Vietnamese 349 | # ---------- 350 | vi: &DEFAULT_VI 351 | comments_label : "Để lại bình luận" 352 | comments_title : "Bình luận" 353 | comment_form_info : "Email của bạn sẽ được giữ bí mật. Các phần bắt buộc được đánh dấu" 354 | comment_form_comment_label : "Bình luận" 355 | comment_form_md_info : "Hỗ trợ Markdown." 356 | comment_form_name_label : "Tên" 357 | comment_form_email_label : "Địa chỉ email" 358 | comment_form_website_label : "Website (không bắt buộc)" 359 | comment_btn_submit : "Gửi bình luận" 360 | comment_btn_submitted : "Đã được gửi" 361 | comment_success_msg : "Cảm ơn bạn đã bình luận! Bình luận sẽ xuất hiện sau khi được duyệt." 362 | comment_error_msg : "Rất tiếc, có lỗi trong việc gửi bình luận. Hãy đảm bảo toàn bộ các phần bắt buộc đã được điền đầy đủ và thử lại." 363 | vi-VN: 364 | <<: *DEFAULT_VI 365 | 366 | # Danish 367 | # ------ 368 | da: &DEFAULT_DA 369 | comments_label : "Skriv en kommentar" 370 | comments_title : "Kommentarer" 371 | comment_form_info : "Din e-mail bliver ikke offentliggjort. Obligatoriske felter er markeret" 372 | comment_form_comment_label : "Kommentar" 373 | comment_form_md_info : "Markdown er understøttet." 374 | comment_form_name_label : "Navn" 375 | comment_form_email_label : "E-mail" 376 | comment_form_website_label : "Website (frivillig)" 377 | comment_btn_submit : "Send kommentar" 378 | comment_btn_submitted : "Sendt" 379 | comment_success_msg : "Tak for din kommentar! Den bliver vist på siden, så snart den er godkendt." 380 | comment_error_msg : "Desværre skete der en fejl. Prøv igen, mens du sørger for at alle obligatoriske felter er udfyldt." 381 | da-DK: 382 | <<: *DEFAULT_DA 383 | 384 | # Polish 385 | # ------ 386 | pl: &DEFAULT_PL 387 | comments_label : "Zostaw komentarz" 388 | comments_title : "Komentarze" 389 | comment_form_info : "Twój adres email nie będzie udostępiony. Wymagane pola są oznaczone" 390 | comment_form_comment_label : "Skomentuj" 391 | comment_form_md_info : "Markdown jest wspierany" 392 | comment_form_name_label : "Imię" 393 | comment_form_email_label : "Adres email" 394 | comment_form_website_label : "Strona www (opcjonalna)" 395 | comment_btn_submit : "Skomentuj" 396 | comment_btn_submitted : "Komentarz dodany" 397 | comment_success_msg : "Dziękuję za Twój komentarz! Zostanie dodany po akceptacji." 398 | comment_error_msg : "Niestety wystąpił błąd. Proszę upewnij się, że wszystkie wymagane pola zostały wypełnione i spróbuj ponownie." 399 | pl-PL: 400 | <<: *DEFAULT_PL 401 | 402 | # Japanese 403 | # -------- 404 | ja: &DEFAULT_JA 405 | comments_label : "コメントする" 406 | comments_title : "コメント" 407 | comment_form_info : "メールアドレスが公開されることはありません。次の印のある項目は必ず入力してください:" 408 | comment_form_comment_label : "コメント" 409 | comment_form_md_info : "Markdown を使用できます" 410 | comment_form_name_label : "名前" 411 | comment_form_email_label : "メールアドレス" 412 | comment_form_website_label : "URL (任意)" 413 | comment_btn_submit : "コメントを送信する" 414 | comment_btn_submitted : "送信しました" 415 | comment_success_msg : "コメントありがとうございます! コメントは承認されるとページに表示されます。" 416 | comment_error_msg : "送信エラーです。必須項目がすべて入力されていることを確認して再送信してください。" 417 | ja-JP: 418 | <<: *DEFAULT_JA 419 | 420 | # Slovak 421 | # ----------------- 422 | sk: &DEFAULT_SK 423 | comments_label : "Zanechaj odkaz" 424 | comments_title : "Komentáre" 425 | comment_form_info : "Tvoja emailová adresa nebude publikovaná. Požadované polia sú označené" 426 | comment_form_comment_label : "Komentár" 427 | comment_form_md_info : "Markdown je podporovaný." 428 | comment_form_name_label : "Meno" 429 | comment_form_email_label : "Emailová adresa" 430 | comment_form_website_label : "Webstránka (voliteľné)" 431 | comment_btn_submit : "Vlož komentár" 432 | comment_btn_submitted : "Vložený" 433 | comment_success_msg : "Ďakujem za tvoj komentár! Po schválení bude zobrazený na stránke." 434 | comment_error_msg : "Prepáč, pri ukladaní nastala chyba. Ubezpeč sa prosím, že si vyplnil všetky požadované polia a skús znova." 435 | sk-SK: 436 | <<: *DEFAULT_SK 437 | 438 | # Hungarian 439 | # ----------------- 440 | hu: &DEFAULT_HU 441 | comments_label : "Szólj hozzá!" 442 | comments_title : "Hozzászólások" 443 | comment_form_info : "Az e-mail címed nem lesz publikus. A csillagozott mezők kitöltése kötelező" 444 | comment_form_comment_label : "Hozzászólás" 445 | comment_form_md_info : "Támogatott formázási mód: Markdown" 446 | comment_form_name_label : "Név" 447 | comment_form_email_label : "Email cím" 448 | comment_form_website_label : "Honlap (nem kötelező):" 449 | comment_btn_submit : "Hozzászólás elküldése" 450 | comment_btn_submitted : "Hozzászólás elküldve" 451 | comment_success_msg : "Köszönjük a Hozzászólást! A Hozzászólások csak előzetes moderáció után lesznek publikusak." 452 | comment_error_msg : "Hoppá, hiba történt a beküldés közben. Kérlek ellenőrizd hogy minden kötelező mező ki van-e töltve." 453 | hu-HU: 454 | <<: *DEFAULT_HU 455 | 456 | # Romanian 457 | # ----------------- 458 | ro: &DEFAULT_RO 459 | comments_label : "Lasă un comentariu" 460 | comments_title : "Comentarii" 461 | comment_form_info : "Adresa ta de email nu va fi făcută publică. Câmpurile marcate sunt obligatorii" 462 | comment_form_comment_label : "Comentariu" 463 | comment_form_md_info : "Markdown este suportat." 464 | comment_form_name_label : "Nume" 465 | comment_form_email_label : "Adresă de email" 466 | comment_form_website_label : "Site (opțional)" 467 | comment_btn_submit : "Trimite comentariul" 468 | comment_btn_submitted : "Trimis" 469 | comment_success_msg : "Mulțumesc pentru comentariu! Va apărea pe site în momentul în care va fi aprobat." 470 | comment_error_msg : "Scuze, este o problemă cu comentariul tău. Asigură-te că toate câmpurile obligatorii au fost completate și încearcă din nou." 471 | ro-RO: 472 | <<: *DEFAULT_RO 473 | 474 | # Punjabi 475 | # ----------------- 476 | pa: &DEFAULT_PA 477 | comments_label : "ਇੱਕ ਟਿੱਪਣੀ ਛੱਡੋ" 478 | comments_title : "ਟਿੱਪਣੀਆਂ" 479 | comment_form_info : "ਤੁਹਾਡਾ ਈਮੇਲ ਪਤਾ ਪ੍ਰਕਾਸ਼ਿਤ ਨਹੀਂ ਕੀਤਾ ਜਾਵੇਗਾ। ਅਨੁਮਾਨਿਤ ਸਥਾਨਾਂ ਨੂੰ ਅੰਡਰਲਾਈਨ ਕੀਤਾ ਗਿਆ ਹੈ" 480 | comment_form_comment_label : "ਟਿੱਪਣੀ" 481 | comment_form_md_info : "ਮਾਰਕਡਾਊਨ ਵਰਤ ਸਕਦੇ ਹੋ।" 482 | comment_form_name_label : "ਨਾਮ" 483 | comment_form_email_label : "ਈਮੇਲ ਪਤਾ" 484 | comment_form_website_label : "ਵੈਬਸਾਈਟ (ਵਿਕਲਪਿਕ)" 485 | comment_btn_submit : "ਕੋਈ ਟਿੱਪਣੀ ਭੇਜੋ" 486 | comment_btn_submitted : "ਪੇਸ਼ ਕੀਤਾ" 487 | comment_success_msg : "ਤੁਹਾਡੀਆਂ ਟਿੱਪਣੀਆਂ ਲਈ ਧੰਨਵਾਦ! ਇਹ ਮਨਜ਼ੂਰੀ ਮਿਲਣ ਦੇ ਬਾਅਦ ਸਾਈਟ 'ਤੇ ਦਿਖਾਇਆ ਜਾਵੇਗਾ।" 488 | comment_error_msg : "ਮੁਆਫ ਕਰਨਾ, ਤੁਹਾਡੀ ਅਧੀਨਗੀ ਵਿੱਚ ਕੋਈ ਗਲਤੀ ਹੋਈ ਸੀ ਕਿਰਪਾ ਕਰਕੇ ਯਕੀਨੀ ਬਣਾਓ ਕਿ ਸਾਰੇ ਲੋੜੀਂਦੇ ਖੇਤਰ ਪੂਰੇ ਹੋ ਗਏ ਹਨ ਅਤੇ ਦੁਬਾਰਾ ਕੋਸ਼ਿਸ਼ ਕਰੋ।" 489 | pa-IN: 490 | <<: *DEFAULT_PA 491 | 492 | # Another locale 493 | # -------------- 494 | # 495 | -------------------------------------------------------------------------------- /assets/css/beautifuljekyll.css: -------------------------------------------------------------------------------- 1 | --- 2 | layout: null 3 | --- 4 | 5 | @import url("pygment_highlights.css"); 6 | 7 | /* --- General --- */ 8 | 9 | html { 10 | font-size: 100% 11 | } 12 | 13 | body { 14 | font-family: 'Lora', 'Times New Roman', serif; 15 | font-size: 1.125rem; 16 | color: {{ site.text-col | default: "#404040" }}; 17 | position: relative; 18 | background-color: {{ site.page-col | default: "#FFFFFF" }}; 19 | {% if site.page-img %} 20 | background-image: url({{ site.page-img | relative_url }}); 21 | background-attachment: fixed; 22 | {% endif %} 23 | } 24 | p { 25 | line-height: 1.5; 26 | margin: 1.875rem 0; 27 | } 28 | h1,h2,h3,h4,h5,h6 { 29 | font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif; 30 | font-weight: 800; 31 | line-height: 1.1; 32 | } 33 | h1 { 34 | font-size: 2.25rem; 35 | } 36 | h2 { 37 | font-size: 1.875rem; 38 | } 39 | h3 { 40 | font-size: 1.5rem; 41 | } 42 | h4 { 43 | font-size: 1.125rem; 44 | } 45 | h1, h2, h3, h4 { 46 | margin-top: 1.25rem; 47 | } 48 | a { 49 | color: {{ site.link-col | default: "#008AFF" }}; 50 | } 51 | a:hover, 52 | a:focus { 53 | color: {{ site.hover-col | default: "#0085A1" }}; 54 | } 55 | blockquote { 56 | color: #808080; 57 | font-style: italic; 58 | } 59 | blockquote p:first-child { 60 | margin-top: 0; 61 | } 62 | hr.small { 63 | max-width: 6.25rem; 64 | margin: 1rem auto; 65 | border-width: 0.25rem; 66 | border-color: inherit; 67 | border-radius: 0.1875rem; 68 | } 69 | 70 | /* fix in-page anchors to not be behind fixed header */ 71 | :target:before { 72 | content: ""; 73 | display: block; 74 | height: 3.125rem; /* navbar height */ 75 | margin: -3.125rem 0 0; 76 | } 77 | 78 | .hideme { 79 | display: none; 80 | } 81 | 82 | ::-moz-selection { 83 | color: #fff; 84 | text-shadow: none; 85 | background-color: {{ site.hover-col | default: "#0085A1" }}; 86 | } 87 | ::selection { 88 | color: #fff; 89 | text-shadow: none; 90 | background-color: {{ site.hover-col | default: "#0085A1" }}; 91 | } 92 | img::selection { 93 | color: #fff; 94 | background: transparent; 95 | } 96 | img::-moz-selection { 97 | color: #fff; 98 | background: transparent; 99 | } 100 | 101 | img { 102 | max-width: 100%; 103 | } 104 | 105 | .linked-section { 106 | padding-top: 3.75rem; 107 | margin-top: -1.5625rem; 108 | } 109 | 110 | /* Comments */ 111 | 112 | .disqus-comments { 113 | margin-top: 1.875rem; 114 | } 115 | 116 | @media (min-width: 768px) { 117 | .disqus-comments { 118 | margin-top: 2.5rem; 119 | } 120 | } 121 | 122 | /* --- Navbar --- */ 123 | 124 | .navbar-custom { 125 | background-color: {{ site.navbar-col | default: "#EAEAEA" }}; 126 | border-bottom: 1px solid {{ site.navbar-border-col | default: "#DDDDDD" }}; 127 | font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif; 128 | {% if site.navbar-img %} 129 | background-image: url({{ site.navbar-img | relative_url }}); 130 | background-attachment: fixed; 131 | {% endif %} 132 | -webkit-transition: padding .5s ease-in-out; 133 | -moz-transition: padding .5s ease-in-out; 134 | transition: padding .5s ease-in-out; 135 | } 136 | 137 | .navbar-custom, 138 | .navbar-custom.top-nav-short, 139 | .navbar-custom.top-nav-short-permanent { 140 | padding-top: 0; 141 | padding-bottom: 0; 142 | } 143 | 144 | .navbar-custom .navbar-brand { 145 | line-height: 1.5; 146 | padding-top: 0.625rem; 147 | padding-bottom: 0.625rem; 148 | font-size: 1.125rem; 149 | } 150 | 151 | .navbar-custom .navbar-brand-logo { 152 | -webkit-transition: padding .5s ease-in-out; 153 | -moz-transition: padding .5s ease-in-out; 154 | transition: padding .5s ease-in-out; 155 | } 156 | 157 | .navbar-custom .navbar-brand-logo, 158 | .navbar-custom.top-nav-short .navbar-brand-logo, 159 | .navbar-custom.top-nav-short-permanent .navbar-brand-logo { 160 | padding-top: 0.3125rem; 161 | padding-bottom: 0.3125rem; 162 | } 163 | 164 | .navbar-custom .navbar-brand-logo img { 165 | -webkit-transition: height .5s ease-in-out; 166 | -moz-transition: height .5s ease-in-out; 167 | transition: height .5s ease-in-out; 168 | } 169 | 170 | .navbar-custom .navbar-brand-logo img, 171 | .navbar-custom.top-nav-short .navbar-brand-logo img, 172 | .navbar-custom.top-nav-short-permanent .navbar-brand-logo img { 173 | height: 2.5rem; 174 | } 175 | 176 | .navbar-custom .navbar-nav .nav-item { 177 | text-transform: uppercase; 178 | font-size: 0.8125rem; 179 | letter-spacing: 0.0625rem; 180 | } 181 | 182 | .navbar-custom .navbar-nav .nav-link { 183 | padding-top: 0; 184 | padding-bottom: 0; 185 | line-height: 1.25rem; 186 | padding-top: 0.9375rem; 187 | padding-bottom: 0.9375rem; 188 | } 189 | 190 | .navbar-custom .navbar-brand, 191 | .navbar-custom .navbar-nav .nav-link { 192 | font-weight: 800; 193 | color: {{ site.navbar-text-col | default: "#404040" }}; 194 | } 195 | 196 | .navbar-toggler { 197 | font-size: 1rem; 198 | margin: 0.5rem 0; 199 | } 200 | .navbar-custom .navbar-toggler:focus, 201 | .navbar-custom .navbar-toggler:hover { 202 | background-color: initial; 203 | } 204 | 205 | .navbar-custom .navbar-toggler[aria-expanded="true"] { 206 | background-color: rgba(0, 0, 0, 0.2); 207 | } 208 | 209 | .dropdown-toggle::after { 210 | border-width: 0.4em; 211 | } 212 | 213 | @media (min-width: 1200px) { 214 | .navbar-custom { 215 | padding-top: 1.25rem; 216 | padding-bottom: 1.25rem; 217 | } 218 | 219 | .navbar-custom .navbar-brand-logo { 220 | padding-top: 0; 221 | padding-bottom: 0; 222 | } 223 | 224 | .navbar-custom .navbar-brand-logo img { 225 | height: 3.125rem; 226 | } 227 | 228 | .navbar-expand-xl .navbar-nav .nav-link { 229 | padding-left: 0.9375rem; 230 | padding-right: 0.9375rem; 231 | } 232 | 233 | .navbar-expand-xl .navbar-nav .nav-item:not(.dropdown):last-child .nav-link { 234 | padding-right: 0; 235 | } 236 | } 237 | 238 | @media (min-width: 1200px) { 239 | .navbar-custom .nav-item.dropdown:hover { 240 | background: rgba(0, 0, 0, 0.1); 241 | } 242 | } 243 | 244 | .navbar-custom .nav-item.dropdown.show { 245 | background: rgba(0, 0, 0, 0.2); 246 | } 247 | 248 | .navbar-custom .nav-item.dropdown .dropdown-menu { 249 | min-width: 0; 250 | margin-top: 0; 251 | font-size: 1em; 252 | border: 0; 253 | padding: 0; 254 | width: 100%; 255 | word-break: break-word; 256 | } 257 | .navbar-custom .nav-item.dropdown .dropdown-menu .dropdown-item { 258 | white-space: normal; 259 | padding: 0.625rem; 260 | background-color: {{ site.navbar-col | default: "#EAEAEA" }}; 261 | text-decoration: none !important; 262 | border-width: 0 1px 1px 1px; 263 | font-weight: normal; 264 | color: {{ site.navbar-text-col | default: "#404040" }}; 265 | } 266 | 267 | @media (min-width: 1200px) { 268 | .navbar-custom .nav-item.dropdown .dropdown-menu { 269 | text-align: center; 270 | } 271 | 272 | .navbar-custom .nav-item.dropdown .dropdown-menu .dropdown-item { 273 | padding-left: 0.625rem; 274 | border: 1px solid {{ site.navbar-border-col | default: "#DDDDDD" }}; 275 | border-width: 0 1px 1px; 276 | } 277 | } 278 | 279 | @media (max-width: 1199px) { 280 | .navbar-custom .navbar-collapse { 281 | border-top: 1px solid {{ site.navbar-border-col | default: "#DDDDDD" }}; 282 | margin: 0 -1rem; 283 | } 284 | 285 | .navbar-custom .navbar-nav { 286 | padding: 0.5rem 0; 287 | } 288 | 289 | .navbar-custom .navbar-nav .nav-link { 290 | padding: 0.675rem 0 0.675rem 1rem; 291 | } 292 | 293 | .navbar-custom .nav-item.dropdown.show { 294 | background: rgba(0, 0, 0, 0.2); 295 | } 296 | 297 | .navbar-custom .nav-item.dropdown .dropdown-menu .dropdown-item { 298 | padding-left: 2rem; 299 | } 300 | } 301 | .navbar-custom .navbar-brand:hover, 302 | .navbar-custom .navbar-brand:focus , 303 | .navbar-custom .navbar-nav .nav-link:hover, 304 | .navbar-custom .navbar-nav .nav-link:focus, 305 | .navbar-custom .navbar-nav .dropdown-menu .dropdown-item:hover, 306 | .navbar-custom .navbar-nav .dropdown-menu .dropdown-item:focus { 307 | color: {{ site.hover-col | default: "#0085A1" }}; 308 | } 309 | 310 | .navbar-custom .avatar-container { 311 | position: absolute; 312 | left: 50%; 313 | width: 3.125rem; 314 | bottom: -1.5rem; 315 | transition: opacity 0.5s ease-in-out; 316 | -webkit-transition: opacity 0.5s ease-in-out; 317 | -moz-transition: opacity 0.5s ease-in-out; 318 | } 319 | .navbar-custom.top-nav-short .avatar-container { 320 | opacity: 0; 321 | visibility: hidden; 322 | transition: visibility linear 0.5s, opacity 0.5s ease-in-out; 323 | -webkit-transition: visibility linear 0.5s, opacity 0.5s ease-in-out; 324 | -moz-transition: visibility linear 0.5s, opacity 0.5s ease-in-out; 325 | } 326 | 327 | .navbar-custom .avatar-container .avatar-img-border { 328 | width: 100%; 329 | margin-left: -50%; 330 | {% unless site.round-avatar == false %} 331 | border-radius: 50%; 332 | box-shadow: 0 0 0.5rem rgba(0, 0, 0, .8); 333 | -webkit-box-shadow: 0 0 0.3125rem rgba(0, 0, 0, .8); 334 | -moz-box-shadow: 0 0 0.5rem rgba(0, 0, 0, .8); 335 | {% endunless %} 336 | } 337 | .navbar-custom .avatar-container .avatar-img { 338 | width: 100%; 339 | {% unless site.round-avatar == false %} 340 | border-radius: 50%; 341 | {% endunless %} 342 | display: block; 343 | } 344 | 345 | .navbar-custom.top-nav-expanded .avatar-container { 346 | display: none; 347 | } 348 | 349 | @media (min-width: 1200px) { 350 | .navbar-custom.top-nav-regular .avatar-container { 351 | width: 6.25rem; 352 | bottom: -1.9375rem; 353 | } 354 | 355 | .navbar-custom.top-nav-regular .avatar-container .avatar-img-border { 356 | width: 100%; 357 | {% unless site.round-avatar == false %} 358 | box-shadow: 1px 1px 2px rgba(0, 0, 0, .8); 359 | -webkit-box-shadow: 1px 1px 2px rgba(0, 0, 0, .8); 360 | -moz-box-shadow: 1px 1px 2px rgba(0, 0, 0, .8); 361 | {% endunless %} 362 | } 363 | 364 | .navbar-custom.top-nav-regular .avatar-container .avatar-img { 365 | width: 100%; 366 | } 367 | } 368 | 369 | /* --- Footer --- */ 370 | 371 | footer { 372 | padding: 1.875rem 0; 373 | border-top: 1px #EAEAEA solid; 374 | margin-top: 3.125rem; 375 | font-size: 0.875rem; 376 | background-color: {{ site.footer-col | default: "#EAEAEA" }}; 377 | {% if site.footer-img %} 378 | background-image: url({{ site.footer-img | relative_url }}); 379 | background-attachment: fixed; 380 | {% endif %} 381 | } 382 | 383 | footer p.text-muted { 384 | color: {{ site.footer-text-col | default: "#777777" }} !important; 385 | } 386 | 387 | footer a { 388 | color: {{ site.footer-link-col | default: "#404040" }}; 389 | } 390 | 391 | footer .list-inline { 392 | margin: 0; 393 | padding: 0; 394 | margin-bottom: 1.875rem; 395 | } 396 | footer .copyright { 397 | font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif; 398 | text-align: center; 399 | margin-bottom: 0; 400 | margin-top: 0; 401 | } 402 | footer .theme-by { 403 | text-align: center; 404 | margin: 0.625rem 0 0; 405 | } 406 | footer .footer-custom-content { 407 | text-align: center; 408 | margin-bottom: 0.9375rem; 409 | font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif; 410 | } 411 | 412 | @media (min-width: 768px) { 413 | footer { 414 | padding: 3.125rem 0; 415 | } 416 | footer .footer-links { 417 | font-size: 1.125rem; 418 | } 419 | footer .copyright { 420 | font-size: 1rem; 421 | } 422 | footer .footer-custom-content { 423 | font-size: 1rem; 424 | } 425 | } 426 | 427 | /* --- Post preview (feed) --- */ 428 | 429 | .post-preview { 430 | padding: 1.25rem 0; 431 | border-bottom: 1px solid #eee; 432 | overflow: hidden; 433 | } 434 | 435 | @media (min-width: 768px) { 436 | .post-preview { 437 | padding: 2.1875rem 0; 438 | } 439 | } 440 | 441 | .post-preview:last-child { 442 | border-bottom: 0; 443 | } 444 | 445 | .post-preview a { 446 | text-decoration: none; 447 | font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif; 448 | color: {{ site.text-col | default: "#404040" }}; 449 | } 450 | 451 | .post-preview a:focus, 452 | .post-preview a:hover { 453 | text-decoration: none; 454 | color: {{ site.hover-col | default: "#0085A1" }}; 455 | } 456 | 457 | .post-preview .post-title { 458 | font-size: 1.875rem; 459 | margin-top: 0; 460 | } 461 | .post-preview .post-subtitle { 462 | margin: 0; 463 | font-weight: 300; 464 | margin-bottom: 0.625rem; 465 | } 466 | .post-preview .post-meta, 467 | .post-heading .post-meta { 468 | color: #808080; 469 | font-size: 1.125rem; 470 | font-style: italic; 471 | margin: 0 0 0.625rem; 472 | font-family: 'Lora', 'Times New Roman', serif; 473 | } 474 | .post-heading .post-meta { 475 | display: inline-block; 476 | } 477 | @media (max-width: 767px) { 478 | .post-heading .post-meta { 479 | display: block; 480 | margin-bottom: 0; 481 | } 482 | } 483 | .post-heading .post-meta .middot { 484 | margin: 0 0.625rem; 485 | } 486 | .post-preview .post-entry { 487 | width: 100%; 488 | } 489 | .post-preview .post-image { 490 | float: right; 491 | margin-left: 0.625rem; 492 | height: 12rem; 493 | width: 12rem; 494 | } 495 | .post-preview .post-image { 496 | filter: grayscale(40%); 497 | } 498 | .post-preview .post-image:hover { 499 | filter: grayscale(0%); 500 | } 501 | .post-preview .post-image img { 502 | max-height: 100%; 503 | max-width: 100%; 504 | } 505 | .post-preview .post-image-short { 506 | margin-top: -2.1875rem; 507 | } 508 | @media (max-width: 767px) { 509 | .post-preview .post-image { 510 | height: 9rem; 511 | width: 9rem; 512 | } 513 | .post-preview .post-image-short { 514 | margin-top: 0; 515 | } 516 | } 517 | .post-preview .post-image-small { 518 | width: 100%; 519 | height: 100%; 520 | text-align: center; 521 | display: none; 522 | } 523 | .post-preview .post-image-small img { 524 | max-width: 6.25rem; 525 | max-height: 6.25rem; 526 | } 527 | @media (max-width: 500px) { 528 | .post-preview .post-image { 529 | display: none; 530 | } 531 | .post-preview .post-image-small { 532 | display: block; 533 | } 534 | } 535 | 536 | .post-preview .post-read-more { 537 | font-weight: 800; 538 | } 539 | 540 | @media (min-width: 768px) { 541 | .post-preview .post-title { 542 | font-size: 2.25rem; 543 | } 544 | } 545 | 546 | /* --- Tags --- */ 547 | 548 | .blog-tags { 549 | font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif; 550 | font-size: 0.9375rem; 551 | margin: 1.875rem 0; 552 | } 553 | 554 | .blog-tags span { 555 | color: {{ site.text-col | default: "#404040" }}; 556 | opacity: 0.8; 557 | } 558 | 559 | .blog-tags a { 560 | color: {{ site.text-col | default: "#404040" }}; 561 | text-decoration: none; 562 | padding: 0 0.3125rem; 563 | opacity: 0.8; 564 | border: 1px solid transparent; 565 | border-radius: 0.1875rem; 566 | } 567 | 568 | .blog-tags a:hover { 569 | opacity: 1; 570 | color: {{ site.text-col | default: "#404040" }}; 571 | border-color: {{ site.text-col | default: "#404040" }}; 572 | } 573 | 574 | .post-preview .blog-tags { 575 | margin-top: 0.3125rem; 576 | margin-bottom: 0; 577 | } 578 | 579 | @media (min-width: 768px) { 580 | .post-preview .blog-tags { 581 | margin-top: 0.625rem; 582 | } 583 | } 584 | 585 | /* Tags page */ 586 | 587 | .tag-btn { 588 | margin: 0.3125rem; 589 | } 590 | 591 | #full-tags-list { 592 | font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif; 593 | } 594 | 595 | #full-tags-list .tag-entry { 596 | margin: 0 0 0.9375rem 1.5625rem; 597 | } 598 | 599 | #full-tags-list .tag-entry a { 600 | font-size: 1.25rem; 601 | } 602 | 603 | #full-tags-list .tag-entry .entry-date { 604 | color: #808080; 605 | font-style: italic; 606 | font-size: 1rem; 607 | } 608 | 609 | /* --- Post and page headers --- */ 610 | 611 | .intro-header { 612 | margin: 5rem 0 1.25rem; 613 | position: relative; 614 | } 615 | .intro-header.big-img { 616 | background: no-repeat center center; 617 | -webkit-background-size: cover; 618 | -moz-background-size: cover; 619 | background-size: cover; 620 | -o-background-size: cover; 621 | margin-top: 3.1875rem; /* The small navbar is 50px tall + 1px border */ 622 | margin-bottom: 2.1875rem; 623 | } 624 | nav.top-nav-short-permanent ~ header > .intro-header { 625 | margin-top: 5rem; 626 | } 627 | nav.top-nav-short-permanent ~ header > .intro-header.big-img { 628 | margin-top: 3.1875rem; 629 | } 630 | .intro-header.big-img .big-img-transition { 631 | position: absolute; 632 | width: 100%; 633 | height: 100%; 634 | opacity: 0; 635 | background: no-repeat center center; 636 | -webkit-background-size: cover; 637 | -moz-background-size: cover; 638 | background-size: cover; 639 | -o-background-size: cover; 640 | -webkit-transition: opacity 1s linear; 641 | -moz-transition: opacity 1s linear; 642 | transition: opacity 1s linear; 643 | } 644 | .intro-header .page-heading { 645 | text-align: center; 646 | } 647 | .intro-header.big-img .page-heading, 648 | .intro-header.big-img .post-heading { 649 | padding: 6.25rem 0; 650 | color: #FFF; 651 | text-shadow: 1px 1px 3px #000; 652 | } 653 | .intro-header .page-heading h1 { 654 | margin-top: 0; 655 | font-size: 3.125rem; 656 | } 657 | .intro-header .post-heading h1 { 658 | margin-top: 0; 659 | font-size: 2.1875rem; 660 | } 661 | .intro-header .page-heading .page-subheading, 662 | .intro-header .post-heading .post-subheading { 663 | font-size: 1.6875rem; 664 | line-height: 1.1; 665 | display: block; 666 | font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif; 667 | font-weight: 300; 668 | margin: 0.625rem 0 0; 669 | } 670 | .intro-header .post-heading .post-subheading { 671 | margin-bottom: 1.25rem; 672 | } 673 | .intro-header.big-img .page-heading .page-subheading, 674 | .intro-header.big-img .post-heading .post-subheading { 675 | font-weight: 400; 676 | } 677 | .intro-header.big-img .page-heading hr { 678 | box-shadow: 1px 1px 3px #000; 679 | -webkit-box-shadow: 1px 1px 3px #000; 680 | -moz-box-shadow: 1px 1px 3px #000; 681 | } 682 | .intro-header.big-img .post-heading .post-meta { 683 | color: #EEE; 684 | } 685 | .intro-header.big-img .img-desc { 686 | background: rgba(30, 30, 30, 0.6); 687 | position: absolute; 688 | padding: 0.3125rem 0.625rem; 689 | font-size: 0.6875rem; 690 | color: #EEE; 691 | font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif; 692 | right: 0; 693 | bottom: 0; 694 | display: none; 695 | } 696 | @media (min-width: 1200px) { 697 | .intro-header { 698 | margin-top: 8.125rem; 699 | } 700 | .intro-header.big-img { 701 | margin-top: 5.6875rem; /* Full navbar is small navbar + 20px padding on each side when expanded */ 702 | } 703 | .intro-header.big-img .page-heading, 704 | .intro-header.big-img .post-heading { 705 | padding: 9.375rem 0; 706 | } 707 | .intro-header .page-heading h1 { 708 | font-size: 5rem; 709 | } 710 | .intro-header .post-heading h1 { 711 | font-size: 3.125rem; 712 | } 713 | .intro-header.big-img .img-desc { 714 | font-size: 0.875rem; 715 | } 716 | } 717 | 718 | .header-section.has-img .no-img { 719 | margin-top: 0; 720 | background-color: #FCFCFC; 721 | margin: 0 0 2.5rem; 722 | padding: 1.25rem 0; 723 | box-shadow: 0 0 0.3125rem #AAA; 724 | } 725 | /* Many phones are 320 or 360px, so make sure images are a proper aspect ratio in those cases */ 726 | .header-section.has-img .intro-header.no-img { 727 | display: none; 728 | } 729 | @media (max-width: 365px) { 730 | .header-section.has-img .intro-header.no-img { 731 | display: block; 732 | } 733 | .intro-header.big-img { 734 | width: 100%; 735 | height: 13.75rem; 736 | } 737 | .intro-header.big-img .page-heading, 738 | .intro-header.big-img .post-heading { 739 | display: none; 740 | } 741 | .header-section.has-img .big-img { 742 | margin-bottom: 0; 743 | } 744 | } 745 | @media (max-width: 325px) { 746 | .intro-header.big-img { 747 | height: 12.5rem; 748 | } 749 | } 750 | 751 | #header-gh-btns { 752 | margin-bottom: 0.9375rem; 753 | } 754 | @media (max-width: 500px) { 755 | #header-gh-btns > iframe { 756 | display: block; 757 | margin-bottom: 0.3125rem; 758 | } 759 | } 760 | 761 | /* --- Pagination --- */ 762 | 763 | .pagination { 764 | margin: 0.625rem 0 0; 765 | justify-content: space-between; 766 | } 767 | 768 | .pagination.blog-pager { 769 | margin-top: 0; 770 | } 771 | 772 | .pagination .page-item.next { 773 | margin-left: auto; 774 | } 775 | 776 | @media (min-width: 768px) { 777 | .pagination.blog-pager { 778 | margin-top: 0.625rem; 779 | } 780 | } 781 | 782 | .pagination .page-item .page-link { 783 | font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif; 784 | text-transform: uppercase; 785 | font-size: 0.875rem; 786 | font-weight: 800; 787 | letter-spacing: 1px; 788 | padding: 0.625rem 0.3125rem; 789 | background-color: #FFF; 790 | border-radius: 0; 791 | color: {{ site.text-col | default: "#404040" }}; 792 | } 793 | @media (min-width: 768px) { 794 | .pagination .page-item .page-link { 795 | padding: 0.9375rem 1.5625rem; 796 | } 797 | } 798 | .pagination .page-item .page-link:hover, 799 | .pagination .page-item .page-link:focus { 800 | color: #FFF; 801 | border: 1px solid {{ site.hover-col | default: "#0085A1" }}; 802 | background-color: {{ site.hover-col | default: "#0085A1" }}; 803 | } 804 | 805 | /* --- Tables --- */ 806 | 807 | table { 808 | padding: 0; 809 | } 810 | table tr { 811 | border-top: 1px solid #cccccc; 812 | background-color: #ffffff; 813 | margin: 0; 814 | padding: 0; 815 | } 816 | table tr:nth-child(2n) { 817 | background-color: #f8f8f8; 818 | } 819 | table tr th { 820 | font-weight: bold; 821 | border: 1px solid #cccccc; 822 | text-align: left; 823 | margin: 0; 824 | padding: 0.375rem 0.8125rem; 825 | } 826 | table tr td { 827 | border: 1px solid #cccccc; 828 | text-align: left; 829 | margin: 0; 830 | padding: 0.375rem 0.8125rem; 831 | } 832 | table tr th :first-child, 833 | table tr td :first-child { 834 | margin-top: 0; 835 | } 836 | table tr th :last-child, 837 | table tr td :last-child { 838 | margin-bottom: 0; 839 | } 840 | 841 | /* --- Code blocks --- */ 842 | 843 | code { 844 | padding: 0.125rem 0.25rem; 845 | color: #c7254e; 846 | background-color: #f9f2f4; 847 | border-radius: 0.25rem; 848 | } 849 | 850 | pre code { 851 | padding: 0; 852 | background-color: transparent; 853 | border-radius: 0; 854 | } 855 | 856 | pre { 857 | font-size: 0.875rem; 858 | line-height: 1.5em; 859 | border-radius: 0.25rem; 860 | padding: 0.59375rem; 861 | } 862 | .highlight pre { 863 | border: none; 864 | background: none; 865 | margin: 0; 866 | } 867 | .highlight > pre { 868 | background-image: linear-gradient( 869 | rgba(0,0,0,0.03), rgba(0,0,0,0.03) 1.5em, rgba(0,0,0,0.02) 1.5em, rgba(0,0,0,0.02) 3em); 870 | background-size: auto 3em; 871 | background-position-y: 0.625rem; 872 | border: 1px solid rgba(0,0,0,0.1); 873 | border-left: 0.4375rem solid #444; 874 | } 875 | .highlight > pre:not([class~="highlight"]) { /* code block with line number */ 876 | padding: 0; 877 | } 878 | .highlight table, 879 | .highlight tr, 880 | .highlight td { /* to be removed after fixing table styles */ 881 | border: none; 882 | background: none; 883 | padding: 0; 884 | margin: 0; 885 | } 886 | .highlight pre.lineno { 887 | color: rgba(0,0,0,0.3); 888 | border-radius: 0; 889 | border-right: 2px solid #444; 890 | } 891 | 892 | /* Make line numbers unselectable: excludes line numbers from copy-paste user ops */ 893 | .lineno { 894 | -webkit-user-select: none; 895 | -moz-user-select: none; 896 | -ms-user-select: none; 897 | user-select: none; 898 | } 899 | .lineno::selection, .lineno::-moz-selection { 900 | background: none; 901 | } 902 | 903 | /* Fix table border github gist snippets */ 904 | 905 | .gist, .gist-file table tr { 906 | border: unset; 907 | } 908 | 909 | .gist, .gist-file table tr td { 910 | border: unset; 911 | } 912 | 913 | /* --- Social media sharing section --- */ 914 | 915 | #social-share-section { 916 | margin-bottom: 1.875rem; 917 | margin-top: 1.875rem; 918 | } 919 | 920 | /* --- Notification boxes --- */ 921 | .box-note, 922 | .box-warning, 923 | .box-error, 924 | .box-success { 925 | padding: 0.9375rem 0.9375rem 0.9375rem 0.625rem; 926 | margin: 1.25rem 1.25rem 1.25rem 0.3125rem; 927 | border: 1px solid #eee; 928 | border-left-width: 0.3125rem; 929 | border-radius: 0.3125rem 0.1875rem 0.1875rem 0.3125rem; 930 | } 931 | 932 | .box-note { 933 | background-color: #eee; 934 | border-left-color: #2980b9; 935 | } 936 | 937 | .box-warning { 938 | background-color: #fdf5d4; 939 | border-left-color: #f1c40f; 940 | } 941 | 942 | .box-error { 943 | background-color: #f4dddb; 944 | border-left-color: #c0392b; 945 | } 946 | 947 | .box-success { 948 | background-color: #98FB98; 949 | border-left-color: #3CB371; 950 | } 951 | 952 | /* --- Misc blog post styles --- */ 953 | 954 | .blog-post :first-child { 955 | margin-top: 0; 956 | } 957 | 958 | .blog-post img { 959 | max-width: 100%; 960 | } 961 | 962 | .blog-post .caption { 963 | text-align: center; 964 | font-size: 0.875rem; 965 | padding: 0.625rem; 966 | font-style: italic; 967 | color: #777; 968 | margin: 0; 969 | display: block; 970 | border-bottom-right-radius: 0.3125rem; 971 | border-bottom-left-radius: 0.3125rem; 972 | } 973 | 974 | .blog-post hr { 975 | max-width: 25%; 976 | border-width: 0.25rem; 977 | border-radius: 0.1875rem; 978 | border-color: #808080; 979 | } 980 | 981 | .blog-post blockquote { 982 | padding: 0.625rem 1.25rem; 983 | margin: 0 0 1.25rem; 984 | font-size: 1.1rem; 985 | border-left: 0.3125rem solid #eee; 986 | } 987 | 988 | .blog-post blockquote p:last-child { 989 | margin-bottom: 0; 990 | } 991 | 992 | .center { 993 | display: block; 994 | margin: 0 auto; 995 | } 996 | 997 | /* Search bar */ 998 | #beautifuljekyll-search-overlay { 999 | display: none; 1000 | z-index: 999999; 1001 | position: fixed; 1002 | background: rgba(0,0,0,0.9); 1003 | left: 0; 1004 | right: 0; 1005 | top: 0; 1006 | bottom: 0; 1007 | text-align: center; 1008 | padding: 1rem; 1009 | } 1010 | #nav-search-exit { 1011 | position: absolute; 1012 | top: 1.5rem; 1013 | cursor: pointer; 1014 | right: 25%; 1015 | margin-right: 2rem; 1016 | color: #555; 1017 | font-size: 2rem; 1018 | line-height: 2rem; 1019 | font-weight: bold; 1020 | } 1021 | #nav-search-exit:hover { 1022 | color: #000; 1023 | } 1024 | #nav-search-input { 1025 | text-align: center; 1026 | background: #e7edee; 1027 | margin: auto; 1028 | display: block; 1029 | font-size: 2rem; 1030 | width: 50%; 1031 | transition: width 300ms ease; 1032 | color: #222; 1033 | border-radius: 5rem; 1034 | outline: none; 1035 | border: none; 1036 | padding: 0 3rem; 1037 | } 1038 | @media (max-width: 1199px) { 1039 | #nav-search-input { 1040 | width: 75%; 1041 | } 1042 | #nav-search-exit { 1043 | right: 12.5%; 1044 | } 1045 | } 1046 | @media (max-width: 767px) { 1047 | #nav-search-input { 1048 | width: 100%; 1049 | } 1050 | #nav-search-exit { 1051 | right: 0; 1052 | } 1053 | } 1054 | #nav-search-input:focus { 1055 | background: #f3f8fe; 1056 | box-shadow: 0px 0.15rem 1rem #e7f4ff; 1057 | outline: none; 1058 | } 1059 | 1060 | #nav-search-input::placeholder { 1061 | color: #777; 1062 | } 1063 | 1064 | #search-results-container { 1065 | list-style: none; 1066 | padding-left: unset; 1067 | margin-top: 1.5rem; 1068 | color: #fff; 1069 | font-size: 1.5rem; 1070 | max-height: calc(100vh - 6.5rem); 1071 | overflow-y: auto; 1072 | } 1073 | #search-results-container a { 1074 | color: #fff; 1075 | text-decoration: none; 1076 | } 1077 | #search-results-container a:hover { 1078 | color: #fff; 1079 | text-decoration: underline; 1080 | } 1081 | 1082 | #nav-search-icon { 1083 | display: inline-block; 1084 | } 1085 | #nav-search-text { 1086 | display: none; 1087 | } 1088 | 1089 | @media (max-width: 1199px) { 1090 | #nav-search-icon { 1091 | display: none; 1092 | } 1093 | #nav-search-text { 1094 | display: inline-block; 1095 | } 1096 | } 1097 | -------------------------------------------------------------------------------- /assets/css/bootstrap-social.css: -------------------------------------------------------------------------------- 1 | /* 2 | * Social Buttons for Bootstrap 3 | * 4 | * Copyright 2013-2015 Panayiotis Lipiridis 5 | * Licensed under the MIT License 6 | * 7 | * https://github.com/lipis/bootstrap-social 8 | */ 9 | 10 | .btn-social{position:relative;margin-bottom:5px;padding-left:44px;text-align:left;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.btn-social>:first-child{position:absolute;left:0;top:0;bottom:0;width:32px;line-height:34px;font-size:1.6em;text-align:center;border-right:1px solid rgba(0,0,0,0.2)} 11 | .btn-social.btn-lg{padding-left:61px}.btn-social.btn-lg>:first-child{line-height:45px;width:45px;font-size:1.8em} 12 | .btn-social.btn-sm{padding-left:38px}.btn-social.btn-sm>:first-child{line-height:28px;width:28px;font-size:1.4em} 13 | .btn-social.btn-xs{padding-left:30px}.btn-social.btn-xs>:first-child{line-height:20px;width:20px;font-size:1.2em} 14 | .btn-social-icon{position:relative;padding-left:44px;text-align:left;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;height:34px;width:34px;padding:0}.btn-social-icon>:first-child{position:absolute;left:0;top:0;bottom:0;width:32px;line-height:34px;font-size:1.6em;text-align:center;border-right:1px solid rgba(0,0,0,0.2)} 15 | .btn-social-icon.btn-lg{padding-left:61px}.btn-social-icon.btn-lg>:first-child{line-height:45px;width:45px;font-size:1.8em} 16 | .btn-social-icon.btn-sm{padding-left:38px}.btn-social-icon.btn-sm>:first-child{line-height:28px;width:28px;font-size:1.4em} 17 | .btn-social-icon.btn-xs{padding-left:30px}.btn-social-icon.btn-xs>:first-child{line-height:20px;width:20px;font-size:1.2em} 18 | .btn-social-icon>:first-child{border:none;text-align:center;width:100% !important} 19 | .btn-social-icon.btn-lg{height:45px;width:45px;padding-left:0;padding-right:0} 20 | .btn-social-icon.btn-sm{height:30px;width:30px;padding-left:0;padding-right:0} 21 | .btn-social-icon.btn-xs{height:22px;width:22px;padding-left:0;padding-right:0} 22 | .btn-adn{color:#fff;background-color:#d87a68;border-color:rgba(0,0,0,0.2)}.btn-adn:focus,.btn-adn.focus{color:#fff;background-color:#ce563f;border-color:rgba(0,0,0,0.2)} 23 | .btn-adn:hover{color:#fff;background-color:#ce563f;border-color:rgba(0,0,0,0.2)} 24 | .btn-adn:active,.btn-adn.active,.open>.dropdown-toggle.btn-adn{color:#fff;background-color:#ce563f;border-color:rgba(0,0,0,0.2)}.btn-adn:active:hover,.btn-adn.active:hover,.open>.dropdown-toggle.btn-adn:hover,.btn-adn:active:focus,.btn-adn.active:focus,.open>.dropdown-toggle.btn-adn:focus,.btn-adn:active.focus,.btn-adn.active.focus,.open>.dropdown-toggle.btn-adn.focus{color:#fff;background-color:#b94630;border-color:rgba(0,0,0,0.2)} 25 | .btn-adn:active,.btn-adn.active,.open>.dropdown-toggle.btn-adn{background-image:none} 26 | .btn-adn.disabled,.btn-adn[disabled],fieldset[disabled] .btn-adn,.btn-adn.disabled:hover,.btn-adn[disabled]:hover,fieldset[disabled] .btn-adn:hover,.btn-adn.disabled:focus,.btn-adn[disabled]:focus,fieldset[disabled] .btn-adn:focus,.btn-adn.disabled.focus,.btn-adn[disabled].focus,fieldset[disabled] .btn-adn.focus,.btn-adn.disabled:active,.btn-adn[disabled]:active,fieldset[disabled] .btn-adn:active,.btn-adn.disabled.active,.btn-adn[disabled].active,fieldset[disabled] .btn-adn.active{background-color:#d87a68;border-color:rgba(0,0,0,0.2)} 27 | .btn-adn .badge{color:#d87a68;background-color:#fff} 28 | .btn-bitbucket{color:#fff;background-color:#205081;border-color:rgba(0,0,0,0.2)}.btn-bitbucket:focus,.btn-bitbucket.focus{color:#fff;background-color:#163758;border-color:rgba(0,0,0,0.2)} 29 | .btn-bitbucket:hover{color:#fff;background-color:#163758;border-color:rgba(0,0,0,0.2)} 30 | .btn-bitbucket:active,.btn-bitbucket.active,.open>.dropdown-toggle.btn-bitbucket{color:#fff;background-color:#163758;border-color:rgba(0,0,0,0.2)}.btn-bitbucket:active:hover,.btn-bitbucket.active:hover,.open>.dropdown-toggle.btn-bitbucket:hover,.btn-bitbucket:active:focus,.btn-bitbucket.active:focus,.open>.dropdown-toggle.btn-bitbucket:focus,.btn-bitbucket:active.focus,.btn-bitbucket.active.focus,.open>.dropdown-toggle.btn-bitbucket.focus{color:#fff;background-color:#0f253c;border-color:rgba(0,0,0,0.2)} 31 | .btn-bitbucket:active,.btn-bitbucket.active,.open>.dropdown-toggle.btn-bitbucket{background-image:none} 32 | .btn-bitbucket.disabled,.btn-bitbucket[disabled],fieldset[disabled] .btn-bitbucket,.btn-bitbucket.disabled:hover,.btn-bitbucket[disabled]:hover,fieldset[disabled] .btn-bitbucket:hover,.btn-bitbucket.disabled:focus,.btn-bitbucket[disabled]:focus,fieldset[disabled] .btn-bitbucket:focus,.btn-bitbucket.disabled.focus,.btn-bitbucket[disabled].focus,fieldset[disabled] .btn-bitbucket.focus,.btn-bitbucket.disabled:active,.btn-bitbucket[disabled]:active,fieldset[disabled] .btn-bitbucket:active,.btn-bitbucket.disabled.active,.btn-bitbucket[disabled].active,fieldset[disabled] .btn-bitbucket.active{background-color:#205081;border-color:rgba(0,0,0,0.2)} 33 | .btn-bitbucket .badge{color:#205081;background-color:#fff} 34 | .btn-dropbox{color:#fff;background-color:#1087dd;border-color:rgba(0,0,0,0.2)}.btn-dropbox:focus,.btn-dropbox.focus{color:#fff;background-color:#0d6aad;border-color:rgba(0,0,0,0.2)} 35 | .btn-dropbox:hover{color:#fff;background-color:#0d6aad;border-color:rgba(0,0,0,0.2)} 36 | .btn-dropbox:active,.btn-dropbox.active,.open>.dropdown-toggle.btn-dropbox{color:#fff;background-color:#0d6aad;border-color:rgba(0,0,0,0.2)}.btn-dropbox:active:hover,.btn-dropbox.active:hover,.open>.dropdown-toggle.btn-dropbox:hover,.btn-dropbox:active:focus,.btn-dropbox.active:focus,.open>.dropdown-toggle.btn-dropbox:focus,.btn-dropbox:active.focus,.btn-dropbox.active.focus,.open>.dropdown-toggle.btn-dropbox.focus{color:#fff;background-color:#0a568c;border-color:rgba(0,0,0,0.2)} 37 | .btn-dropbox:active,.btn-dropbox.active,.open>.dropdown-toggle.btn-dropbox{background-image:none} 38 | .btn-dropbox.disabled,.btn-dropbox[disabled],fieldset[disabled] .btn-dropbox,.btn-dropbox.disabled:hover,.btn-dropbox[disabled]:hover,fieldset[disabled] .btn-dropbox:hover,.btn-dropbox.disabled:focus,.btn-dropbox[disabled]:focus,fieldset[disabled] .btn-dropbox:focus,.btn-dropbox.disabled.focus,.btn-dropbox[disabled].focus,fieldset[disabled] .btn-dropbox.focus,.btn-dropbox.disabled:active,.btn-dropbox[disabled]:active,fieldset[disabled] .btn-dropbox:active,.btn-dropbox.disabled.active,.btn-dropbox[disabled].active,fieldset[disabled] .btn-dropbox.active{background-color:#1087dd;border-color:rgba(0,0,0,0.2)} 39 | .btn-dropbox .badge{color:#1087dd;background-color:#fff} 40 | .btn-facebook{color:#fff;background-color:#3b5998;border-color:rgba(0,0,0,0.2)}.btn-facebook:focus,.btn-facebook.focus{color:#fff;background-color:#2d4373;border-color:rgba(0,0,0,0.2)} 41 | .btn-facebook:hover{color:#fff;background-color:#2d4373;border-color:rgba(0,0,0,0.2)} 42 | .btn-facebook:active,.btn-facebook.active,.open>.dropdown-toggle.btn-facebook{color:#fff;background-color:#2d4373;border-color:rgba(0,0,0,0.2)}.btn-facebook:active:hover,.btn-facebook.active:hover,.open>.dropdown-toggle.btn-facebook:hover,.btn-facebook:active:focus,.btn-facebook.active:focus,.open>.dropdown-toggle.btn-facebook:focus,.btn-facebook:active.focus,.btn-facebook.active.focus,.open>.dropdown-toggle.btn-facebook.focus{color:#fff;background-color:#23345a;border-color:rgba(0,0,0,0.2)} 43 | .btn-facebook:active,.btn-facebook.active,.open>.dropdown-toggle.btn-facebook{background-image:none} 44 | .btn-facebook.disabled,.btn-facebook[disabled],fieldset[disabled] .btn-facebook,.btn-facebook.disabled:hover,.btn-facebook[disabled]:hover,fieldset[disabled] .btn-facebook:hover,.btn-facebook.disabled:focus,.btn-facebook[disabled]:focus,fieldset[disabled] .btn-facebook:focus,.btn-facebook.disabled.focus,.btn-facebook[disabled].focus,fieldset[disabled] .btn-facebook.focus,.btn-facebook.disabled:active,.btn-facebook[disabled]:active,fieldset[disabled] .btn-facebook:active,.btn-facebook.disabled.active,.btn-facebook[disabled].active,fieldset[disabled] .btn-facebook.active{background-color:#3b5998;border-color:rgba(0,0,0,0.2)} 45 | .btn-facebook .badge{color:#3b5998;background-color:#fff} 46 | .btn-flickr{color:#fff;background-color:#ff0084;border-color:rgba(0,0,0,0.2)}.btn-flickr:focus,.btn-flickr.focus{color:#fff;background-color:#cc006a;border-color:rgba(0,0,0,0.2)} 47 | .btn-flickr:hover{color:#fff;background-color:#cc006a;border-color:rgba(0,0,0,0.2)} 48 | .btn-flickr:active,.btn-flickr.active,.open>.dropdown-toggle.btn-flickr{color:#fff;background-color:#cc006a;border-color:rgba(0,0,0,0.2)}.btn-flickr:active:hover,.btn-flickr.active:hover,.open>.dropdown-toggle.btn-flickr:hover,.btn-flickr:active:focus,.btn-flickr.active:focus,.open>.dropdown-toggle.btn-flickr:focus,.btn-flickr:active.focus,.btn-flickr.active.focus,.open>.dropdown-toggle.btn-flickr.focus{color:#fff;background-color:#a80057;border-color:rgba(0,0,0,0.2)} 49 | .btn-flickr:active,.btn-flickr.active,.open>.dropdown-toggle.btn-flickr{background-image:none} 50 | .btn-flickr.disabled,.btn-flickr[disabled],fieldset[disabled] .btn-flickr,.btn-flickr.disabled:hover,.btn-flickr[disabled]:hover,fieldset[disabled] .btn-flickr:hover,.btn-flickr.disabled:focus,.btn-flickr[disabled]:focus,fieldset[disabled] .btn-flickr:focus,.btn-flickr.disabled.focus,.btn-flickr[disabled].focus,fieldset[disabled] .btn-flickr.focus,.btn-flickr.disabled:active,.btn-flickr[disabled]:active,fieldset[disabled] .btn-flickr:active,.btn-flickr.disabled.active,.btn-flickr[disabled].active,fieldset[disabled] .btn-flickr.active{background-color:#ff0084;border-color:rgba(0,0,0,0.2)} 51 | .btn-flickr .badge{color:#ff0084;background-color:#fff} 52 | .btn-foursquare{color:#fff;background-color:#f94877;border-color:rgba(0,0,0,0.2)}.btn-foursquare:focus,.btn-foursquare.focus{color:#fff;background-color:#f71752;border-color:rgba(0,0,0,0.2)} 53 | .btn-foursquare:hover{color:#fff;background-color:#f71752;border-color:rgba(0,0,0,0.2)} 54 | .btn-foursquare:active,.btn-foursquare.active,.open>.dropdown-toggle.btn-foursquare{color:#fff;background-color:#f71752;border-color:rgba(0,0,0,0.2)}.btn-foursquare:active:hover,.btn-foursquare.active:hover,.open>.dropdown-toggle.btn-foursquare:hover,.btn-foursquare:active:focus,.btn-foursquare.active:focus,.open>.dropdown-toggle.btn-foursquare:focus,.btn-foursquare:active.focus,.btn-foursquare.active.focus,.open>.dropdown-toggle.btn-foursquare.focus{color:#fff;background-color:#e30742;border-color:rgba(0,0,0,0.2)} 55 | .btn-foursquare:active,.btn-foursquare.active,.open>.dropdown-toggle.btn-foursquare{background-image:none} 56 | .btn-foursquare.disabled,.btn-foursquare[disabled],fieldset[disabled] .btn-foursquare,.btn-foursquare.disabled:hover,.btn-foursquare[disabled]:hover,fieldset[disabled] .btn-foursquare:hover,.btn-foursquare.disabled:focus,.btn-foursquare[disabled]:focus,fieldset[disabled] .btn-foursquare:focus,.btn-foursquare.disabled.focus,.btn-foursquare[disabled].focus,fieldset[disabled] .btn-foursquare.focus,.btn-foursquare.disabled:active,.btn-foursquare[disabled]:active,fieldset[disabled] .btn-foursquare:active,.btn-foursquare.disabled.active,.btn-foursquare[disabled].active,fieldset[disabled] .btn-foursquare.active{background-color:#f94877;border-color:rgba(0,0,0,0.2)} 57 | .btn-foursquare .badge{color:#f94877;background-color:#fff} 58 | .btn-github{color:#fff;background-color:#444;border-color:rgba(0,0,0,0.2)}.btn-github:focus,.btn-github.focus{color:#fff;background-color:#2b2b2b;border-color:rgba(0,0,0,0.2)} 59 | .btn-github:hover{color:#fff;background-color:#2b2b2b;border-color:rgba(0,0,0,0.2)} 60 | .btn-github:active,.btn-github.active,.open>.dropdown-toggle.btn-github{color:#fff;background-color:#2b2b2b;border-color:rgba(0,0,0,0.2)}.btn-github:active:hover,.btn-github.active:hover,.open>.dropdown-toggle.btn-github:hover,.btn-github:active:focus,.btn-github.active:focus,.open>.dropdown-toggle.btn-github:focus,.btn-github:active.focus,.btn-github.active.focus,.open>.dropdown-toggle.btn-github.focus{color:#fff;background-color:#191919;border-color:rgba(0,0,0,0.2)} 61 | .btn-github:active,.btn-github.active,.open>.dropdown-toggle.btn-github{background-image:none} 62 | .btn-github.disabled,.btn-github[disabled],fieldset[disabled] .btn-github,.btn-github.disabled:hover,.btn-github[disabled]:hover,fieldset[disabled] .btn-github:hover,.btn-github.disabled:focus,.btn-github[disabled]:focus,fieldset[disabled] .btn-github:focus,.btn-github.disabled.focus,.btn-github[disabled].focus,fieldset[disabled] .btn-github.focus,.btn-github.disabled:active,.btn-github[disabled]:active,fieldset[disabled] .btn-github:active,.btn-github.disabled.active,.btn-github[disabled].active,fieldset[disabled] .btn-github.active{background-color:#444;border-color:rgba(0,0,0,0.2)} 63 | .btn-github .badge{color:#444;background-color:#fff} 64 | .btn-google{color:#fff;background-color:#dd4b39;border-color:rgba(0,0,0,0.2)}.btn-google:focus,.btn-google.focus{color:#fff;background-color:#c23321;border-color:rgba(0,0,0,0.2)} 65 | .btn-google:hover{color:#fff;background-color:#c23321;border-color:rgba(0,0,0,0.2)} 66 | .btn-google:active,.btn-google.active,.open>.dropdown-toggle.btn-google{color:#fff;background-color:#c23321;border-color:rgba(0,0,0,0.2)}.btn-google:active:hover,.btn-google.active:hover,.open>.dropdown-toggle.btn-google:hover,.btn-google:active:focus,.btn-google.active:focus,.open>.dropdown-toggle.btn-google:focus,.btn-google:active.focus,.btn-google.active.focus,.open>.dropdown-toggle.btn-google.focus{color:#fff;background-color:#a32b1c;border-color:rgba(0,0,0,0.2)} 67 | .btn-google:active,.btn-google.active,.open>.dropdown-toggle.btn-google{background-image:none} 68 | .btn-google.disabled,.btn-google[disabled],fieldset[disabled] .btn-google,.btn-google.disabled:hover,.btn-google[disabled]:hover,fieldset[disabled] .btn-google:hover,.btn-google.disabled:focus,.btn-google[disabled]:focus,fieldset[disabled] .btn-google:focus,.btn-google.disabled.focus,.btn-google[disabled].focus,fieldset[disabled] .btn-google.focus,.btn-google.disabled:active,.btn-google[disabled]:active,fieldset[disabled] .btn-google:active,.btn-google.disabled.active,.btn-google[disabled].active,fieldset[disabled] .btn-google.active{background-color:#dd4b39;border-color:rgba(0,0,0,0.2)} 69 | .btn-google .badge{color:#dd4b39;background-color:#fff} 70 | .btn-instagram{color:#fff;background-color:#3f729b;border-color:rgba(0,0,0,0.2)}.btn-instagram:focus,.btn-instagram.focus{color:#fff;background-color:#305777;border-color:rgba(0,0,0,0.2)} 71 | .btn-instagram:hover{color:#fff;background-color:#305777;border-color:rgba(0,0,0,0.2)} 72 | .btn-instagram:active,.btn-instagram.active,.open>.dropdown-toggle.btn-instagram{color:#fff;background-color:#305777;border-color:rgba(0,0,0,0.2)}.btn-instagram:active:hover,.btn-instagram.active:hover,.open>.dropdown-toggle.btn-instagram:hover,.btn-instagram:active:focus,.btn-instagram.active:focus,.open>.dropdown-toggle.btn-instagram:focus,.btn-instagram:active.focus,.btn-instagram.active.focus,.open>.dropdown-toggle.btn-instagram.focus{color:#fff;background-color:#26455d;border-color:rgba(0,0,0,0.2)} 73 | .btn-instagram:active,.btn-instagram.active,.open>.dropdown-toggle.btn-instagram{background-image:none} 74 | .btn-instagram.disabled,.btn-instagram[disabled],fieldset[disabled] .btn-instagram,.btn-instagram.disabled:hover,.btn-instagram[disabled]:hover,fieldset[disabled] .btn-instagram:hover,.btn-instagram.disabled:focus,.btn-instagram[disabled]:focus,fieldset[disabled] .btn-instagram:focus,.btn-instagram.disabled.focus,.btn-instagram[disabled].focus,fieldset[disabled] .btn-instagram.focus,.btn-instagram.disabled:active,.btn-instagram[disabled]:active,fieldset[disabled] .btn-instagram:active,.btn-instagram.disabled.active,.btn-instagram[disabled].active,fieldset[disabled] .btn-instagram.active{background-color:#3f729b;border-color:rgba(0,0,0,0.2)} 75 | .btn-instagram .badge{color:#3f729b;background-color:#fff} 76 | .btn-linkedin{color:#fff;background-color:#007bb6;border-color:rgba(0,0,0,0.2)}.btn-linkedin:focus,.btn-linkedin.focus{color:#fff;background-color:#005983;border-color:rgba(0,0,0,0.2)} 77 | .btn-linkedin:hover{color:#fff;background-color:#005983;border-color:rgba(0,0,0,0.2)} 78 | .btn-linkedin:active,.btn-linkedin.active,.open>.dropdown-toggle.btn-linkedin{color:#fff;background-color:#005983;border-color:rgba(0,0,0,0.2)}.btn-linkedin:active:hover,.btn-linkedin.active:hover,.open>.dropdown-toggle.btn-linkedin:hover,.btn-linkedin:active:focus,.btn-linkedin.active:focus,.open>.dropdown-toggle.btn-linkedin:focus,.btn-linkedin:active.focus,.btn-linkedin.active.focus,.open>.dropdown-toggle.btn-linkedin.focus{color:#fff;background-color:#00405f;border-color:rgba(0,0,0,0.2)} 79 | .btn-linkedin:active,.btn-linkedin.active,.open>.dropdown-toggle.btn-linkedin{background-image:none} 80 | .btn-linkedin.disabled,.btn-linkedin[disabled],fieldset[disabled] .btn-linkedin,.btn-linkedin.disabled:hover,.btn-linkedin[disabled]:hover,fieldset[disabled] .btn-linkedin:hover,.btn-linkedin.disabled:focus,.btn-linkedin[disabled]:focus,fieldset[disabled] .btn-linkedin:focus,.btn-linkedin.disabled.focus,.btn-linkedin[disabled].focus,fieldset[disabled] .btn-linkedin.focus,.btn-linkedin.disabled:active,.btn-linkedin[disabled]:active,fieldset[disabled] .btn-linkedin:active,.btn-linkedin.disabled.active,.btn-linkedin[disabled].active,fieldset[disabled] .btn-linkedin.active{background-color:#007bb6;border-color:rgba(0,0,0,0.2)} 81 | .btn-linkedin .badge{color:#007bb6;background-color:#fff} 82 | .btn-microsoft{color:#fff;background-color:#2672ec;border-color:rgba(0,0,0,0.2)}.btn-microsoft:focus,.btn-microsoft.focus{color:#fff;background-color:#125acd;border-color:rgba(0,0,0,0.2)} 83 | .btn-microsoft:hover{color:#fff;background-color:#125acd;border-color:rgba(0,0,0,0.2)} 84 | .btn-microsoft:active,.btn-microsoft.active,.open>.dropdown-toggle.btn-microsoft{color:#fff;background-color:#125acd;border-color:rgba(0,0,0,0.2)}.btn-microsoft:active:hover,.btn-microsoft.active:hover,.open>.dropdown-toggle.btn-microsoft:hover,.btn-microsoft:active:focus,.btn-microsoft.active:focus,.open>.dropdown-toggle.btn-microsoft:focus,.btn-microsoft:active.focus,.btn-microsoft.active.focus,.open>.dropdown-toggle.btn-microsoft.focus{color:#fff;background-color:#0f4bac;border-color:rgba(0,0,0,0.2)} 85 | .btn-microsoft:active,.btn-microsoft.active,.open>.dropdown-toggle.btn-microsoft{background-image:none} 86 | .btn-microsoft.disabled,.btn-microsoft[disabled],fieldset[disabled] .btn-microsoft,.btn-microsoft.disabled:hover,.btn-microsoft[disabled]:hover,fieldset[disabled] .btn-microsoft:hover,.btn-microsoft.disabled:focus,.btn-microsoft[disabled]:focus,fieldset[disabled] .btn-microsoft:focus,.btn-microsoft.disabled.focus,.btn-microsoft[disabled].focus,fieldset[disabled] .btn-microsoft.focus,.btn-microsoft.disabled:active,.btn-microsoft[disabled]:active,fieldset[disabled] .btn-microsoft:active,.btn-microsoft.disabled.active,.btn-microsoft[disabled].active,fieldset[disabled] .btn-microsoft.active{background-color:#2672ec;border-color:rgba(0,0,0,0.2)} 87 | .btn-microsoft .badge{color:#2672ec;background-color:#fff} 88 | .btn-odnoklassniki{color:#fff;background-color:#f4731c;border-color:rgba(0,0,0,0.2)}.btn-odnoklassniki:focus,.btn-odnoklassniki.focus{color:#fff;background-color:#d35b0a;border-color:rgba(0,0,0,0.2)} 89 | .btn-odnoklassniki:hover{color:#fff;background-color:#d35b0a;border-color:rgba(0,0,0,0.2)} 90 | .btn-odnoklassniki:active,.btn-odnoklassniki.active,.open>.dropdown-toggle.btn-odnoklassniki{color:#fff;background-color:#d35b0a;border-color:rgba(0,0,0,0.2)}.btn-odnoklassniki:active:hover,.btn-odnoklassniki.active:hover,.open>.dropdown-toggle.btn-odnoklassniki:hover,.btn-odnoklassniki:active:focus,.btn-odnoklassniki.active:focus,.open>.dropdown-toggle.btn-odnoklassniki:focus,.btn-odnoklassniki:active.focus,.btn-odnoklassniki.active.focus,.open>.dropdown-toggle.btn-odnoklassniki.focus{color:#fff;background-color:#b14c09;border-color:rgba(0,0,0,0.2)} 91 | .btn-odnoklassniki:active,.btn-odnoklassniki.active,.open>.dropdown-toggle.btn-odnoklassniki{background-image:none} 92 | .btn-odnoklassniki.disabled,.btn-odnoklassniki[disabled],fieldset[disabled] .btn-odnoklassniki,.btn-odnoklassniki.disabled:hover,.btn-odnoklassniki[disabled]:hover,fieldset[disabled] .btn-odnoklassniki:hover,.btn-odnoklassniki.disabled:focus,.btn-odnoklassniki[disabled]:focus,fieldset[disabled] .btn-odnoklassniki:focus,.btn-odnoklassniki.disabled.focus,.btn-odnoklassniki[disabled].focus,fieldset[disabled] .btn-odnoklassniki.focus,.btn-odnoklassniki.disabled:active,.btn-odnoklassniki[disabled]:active,fieldset[disabled] .btn-odnoklassniki:active,.btn-odnoklassniki.disabled.active,.btn-odnoklassniki[disabled].active,fieldset[disabled] .btn-odnoklassniki.active{background-color:#f4731c;border-color:rgba(0,0,0,0.2)} 93 | .btn-odnoklassniki .badge{color:#f4731c;background-color:#fff} 94 | .btn-openid{color:#fff;background-color:#f7931e;border-color:rgba(0,0,0,0.2)}.btn-openid:focus,.btn-openid.focus{color:#fff;background-color:#da7908;border-color:rgba(0,0,0,0.2)} 95 | .btn-openid:hover{color:#fff;background-color:#da7908;border-color:rgba(0,0,0,0.2)} 96 | .btn-openid:active,.btn-openid.active,.open>.dropdown-toggle.btn-openid{color:#fff;background-color:#da7908;border-color:rgba(0,0,0,0.2)}.btn-openid:active:hover,.btn-openid.active:hover,.open>.dropdown-toggle.btn-openid:hover,.btn-openid:active:focus,.btn-openid.active:focus,.open>.dropdown-toggle.btn-openid:focus,.btn-openid:active.focus,.btn-openid.active.focus,.open>.dropdown-toggle.btn-openid.focus{color:#fff;background-color:#b86607;border-color:rgba(0,0,0,0.2)} 97 | .btn-openid:active,.btn-openid.active,.open>.dropdown-toggle.btn-openid{background-image:none} 98 | .btn-openid.disabled,.btn-openid[disabled],fieldset[disabled] .btn-openid,.btn-openid.disabled:hover,.btn-openid[disabled]:hover,fieldset[disabled] .btn-openid:hover,.btn-openid.disabled:focus,.btn-openid[disabled]:focus,fieldset[disabled] .btn-openid:focus,.btn-openid.disabled.focus,.btn-openid[disabled].focus,fieldset[disabled] .btn-openid.focus,.btn-openid.disabled:active,.btn-openid[disabled]:active,fieldset[disabled] .btn-openid:active,.btn-openid.disabled.active,.btn-openid[disabled].active,fieldset[disabled] .btn-openid.active{background-color:#f7931e;border-color:rgba(0,0,0,0.2)} 99 | .btn-openid .badge{color:#f7931e;background-color:#fff} 100 | .btn-pinterest{color:#fff;background-color:#cb2027;border-color:rgba(0,0,0,0.2)}.btn-pinterest:focus,.btn-pinterest.focus{color:#fff;background-color:#9f191f;border-color:rgba(0,0,0,0.2)} 101 | .btn-pinterest:hover{color:#fff;background-color:#9f191f;border-color:rgba(0,0,0,0.2)} 102 | .btn-pinterest:active,.btn-pinterest.active,.open>.dropdown-toggle.btn-pinterest{color:#fff;background-color:#9f191f;border-color:rgba(0,0,0,0.2)}.btn-pinterest:active:hover,.btn-pinterest.active:hover,.open>.dropdown-toggle.btn-pinterest:hover,.btn-pinterest:active:focus,.btn-pinterest.active:focus,.open>.dropdown-toggle.btn-pinterest:focus,.btn-pinterest:active.focus,.btn-pinterest.active.focus,.open>.dropdown-toggle.btn-pinterest.focus{color:#fff;background-color:#801419;border-color:rgba(0,0,0,0.2)} 103 | .btn-pinterest:active,.btn-pinterest.active,.open>.dropdown-toggle.btn-pinterest{background-image:none} 104 | .btn-pinterest.disabled,.btn-pinterest[disabled],fieldset[disabled] .btn-pinterest,.btn-pinterest.disabled:hover,.btn-pinterest[disabled]:hover,fieldset[disabled] .btn-pinterest:hover,.btn-pinterest.disabled:focus,.btn-pinterest[disabled]:focus,fieldset[disabled] .btn-pinterest:focus,.btn-pinterest.disabled.focus,.btn-pinterest[disabled].focus,fieldset[disabled] .btn-pinterest.focus,.btn-pinterest.disabled:active,.btn-pinterest[disabled]:active,fieldset[disabled] .btn-pinterest:active,.btn-pinterest.disabled.active,.btn-pinterest[disabled].active,fieldset[disabled] .btn-pinterest.active{background-color:#cb2027;border-color:rgba(0,0,0,0.2)} 105 | .btn-pinterest .badge{color:#cb2027;background-color:#fff} 106 | .btn-reddit{color:#000;background-color:#eff7ff;border-color:rgba(0,0,0,0.2)}.btn-reddit:focus,.btn-reddit.focus{color:#000;background-color:#bcddff;border-color:rgba(0,0,0,0.2)} 107 | .btn-reddit:hover{color:#000;background-color:#bcddff;border-color:rgba(0,0,0,0.2)} 108 | .btn-reddit:active,.btn-reddit.active,.open>.dropdown-toggle.btn-reddit{color:#000;background-color:#bcddff;border-color:rgba(0,0,0,0.2)}.btn-reddit:active:hover,.btn-reddit.active:hover,.open>.dropdown-toggle.btn-reddit:hover,.btn-reddit:active:focus,.btn-reddit.active:focus,.open>.dropdown-toggle.btn-reddit:focus,.btn-reddit:active.focus,.btn-reddit.active.focus,.open>.dropdown-toggle.btn-reddit.focus{color:#000;background-color:#98ccff;border-color:rgba(0,0,0,0.2)} 109 | .btn-reddit:active,.btn-reddit.active,.open>.dropdown-toggle.btn-reddit{background-image:none} 110 | .btn-reddit.disabled,.btn-reddit[disabled],fieldset[disabled] .btn-reddit,.btn-reddit.disabled:hover,.btn-reddit[disabled]:hover,fieldset[disabled] .btn-reddit:hover,.btn-reddit.disabled:focus,.btn-reddit[disabled]:focus,fieldset[disabled] .btn-reddit:focus,.btn-reddit.disabled.focus,.btn-reddit[disabled].focus,fieldset[disabled] .btn-reddit.focus,.btn-reddit.disabled:active,.btn-reddit[disabled]:active,fieldset[disabled] .btn-reddit:active,.btn-reddit.disabled.active,.btn-reddit[disabled].active,fieldset[disabled] .btn-reddit.active{background-color:#eff7ff;border-color:rgba(0,0,0,0.2)} 111 | .btn-reddit .badge{color:#eff7ff;background-color:#000} 112 | .btn-soundcloud{color:#fff;background-color:#f50;border-color:rgba(0,0,0,0.2)}.btn-soundcloud:focus,.btn-soundcloud.focus{color:#fff;background-color:#c40;border-color:rgba(0,0,0,0.2)} 113 | .btn-soundcloud:hover{color:#fff;background-color:#c40;border-color:rgba(0,0,0,0.2)} 114 | .btn-soundcloud:active,.btn-soundcloud.active,.open>.dropdown-toggle.btn-soundcloud{color:#fff;background-color:#c40;border-color:rgba(0,0,0,0.2)}.btn-soundcloud:active:hover,.btn-soundcloud.active:hover,.open>.dropdown-toggle.btn-soundcloud:hover,.btn-soundcloud:active:focus,.btn-soundcloud.active:focus,.open>.dropdown-toggle.btn-soundcloud:focus,.btn-soundcloud:active.focus,.btn-soundcloud.active.focus,.open>.dropdown-toggle.btn-soundcloud.focus{color:#fff;background-color:#a83800;border-color:rgba(0,0,0,0.2)} 115 | .btn-soundcloud:active,.btn-soundcloud.active,.open>.dropdown-toggle.btn-soundcloud{background-image:none} 116 | .btn-soundcloud.disabled,.btn-soundcloud[disabled],fieldset[disabled] .btn-soundcloud,.btn-soundcloud.disabled:hover,.btn-soundcloud[disabled]:hover,fieldset[disabled] .btn-soundcloud:hover,.btn-soundcloud.disabled:focus,.btn-soundcloud[disabled]:focus,fieldset[disabled] .btn-soundcloud:focus,.btn-soundcloud.disabled.focus,.btn-soundcloud[disabled].focus,fieldset[disabled] .btn-soundcloud.focus,.btn-soundcloud.disabled:active,.btn-soundcloud[disabled]:active,fieldset[disabled] .btn-soundcloud:active,.btn-soundcloud.disabled.active,.btn-soundcloud[disabled].active,fieldset[disabled] .btn-soundcloud.active{background-color:#f50;border-color:rgba(0,0,0,0.2)} 117 | .btn-soundcloud .badge{color:#f50;background-color:#fff} 118 | .btn-tumblr{color:#fff;background-color:#2c4762;border-color:rgba(0,0,0,0.2)}.btn-tumblr:focus,.btn-tumblr.focus{color:#fff;background-color:#1c2d3f;border-color:rgba(0,0,0,0.2)} 119 | .btn-tumblr:hover{color:#fff;background-color:#1c2d3f;border-color:rgba(0,0,0,0.2)} 120 | .btn-tumblr:active,.btn-tumblr.active,.open>.dropdown-toggle.btn-tumblr{color:#fff;background-color:#1c2d3f;border-color:rgba(0,0,0,0.2)}.btn-tumblr:active:hover,.btn-tumblr.active:hover,.open>.dropdown-toggle.btn-tumblr:hover,.btn-tumblr:active:focus,.btn-tumblr.active:focus,.open>.dropdown-toggle.btn-tumblr:focus,.btn-tumblr:active.focus,.btn-tumblr.active.focus,.open>.dropdown-toggle.btn-tumblr.focus{color:#fff;background-color:#111c26;border-color:rgba(0,0,0,0.2)} 121 | .btn-tumblr:active,.btn-tumblr.active,.open>.dropdown-toggle.btn-tumblr{background-image:none} 122 | .btn-tumblr.disabled,.btn-tumblr[disabled],fieldset[disabled] .btn-tumblr,.btn-tumblr.disabled:hover,.btn-tumblr[disabled]:hover,fieldset[disabled] .btn-tumblr:hover,.btn-tumblr.disabled:focus,.btn-tumblr[disabled]:focus,fieldset[disabled] .btn-tumblr:focus,.btn-tumblr.disabled.focus,.btn-tumblr[disabled].focus,fieldset[disabled] .btn-tumblr.focus,.btn-tumblr.disabled:active,.btn-tumblr[disabled]:active,fieldset[disabled] .btn-tumblr:active,.btn-tumblr.disabled.active,.btn-tumblr[disabled].active,fieldset[disabled] .btn-tumblr.active{background-color:#2c4762;border-color:rgba(0,0,0,0.2)} 123 | .btn-tumblr .badge{color:#2c4762;background-color:#fff} 124 | .btn-twitter{color:#fff;background-color:#55acee;border-color:rgba(0,0,0,0.2)}.btn-twitter:focus,.btn-twitter.focus{color:#fff;background-color:#2795e9;border-color:rgba(0,0,0,0.2)} 125 | .btn-twitter:hover{color:#fff;background-color:#2795e9;border-color:rgba(0,0,0,0.2)} 126 | .btn-twitter:active,.btn-twitter.active,.open>.dropdown-toggle.btn-twitter{color:#fff;background-color:#2795e9;border-color:rgba(0,0,0,0.2)}.btn-twitter:active:hover,.btn-twitter.active:hover,.open>.dropdown-toggle.btn-twitter:hover,.btn-twitter:active:focus,.btn-twitter.active:focus,.open>.dropdown-toggle.btn-twitter:focus,.btn-twitter:active.focus,.btn-twitter.active.focus,.open>.dropdown-toggle.btn-twitter.focus{color:#fff;background-color:#1583d7;border-color:rgba(0,0,0,0.2)} 127 | .btn-twitter:active,.btn-twitter.active,.open>.dropdown-toggle.btn-twitter{background-image:none} 128 | .btn-twitter.disabled,.btn-twitter[disabled],fieldset[disabled] .btn-twitter,.btn-twitter.disabled:hover,.btn-twitter[disabled]:hover,fieldset[disabled] .btn-twitter:hover,.btn-twitter.disabled:focus,.btn-twitter[disabled]:focus,fieldset[disabled] .btn-twitter:focus,.btn-twitter.disabled.focus,.btn-twitter[disabled].focus,fieldset[disabled] .btn-twitter.focus,.btn-twitter.disabled:active,.btn-twitter[disabled]:active,fieldset[disabled] .btn-twitter:active,.btn-twitter.disabled.active,.btn-twitter[disabled].active,fieldset[disabled] .btn-twitter.active{background-color:#55acee;border-color:rgba(0,0,0,0.2)} 129 | .btn-twitter .badge{color:#55acee;background-color:#fff} 130 | .btn-vimeo{color:#fff;background-color:#1ab7ea;border-color:rgba(0,0,0,0.2)}.btn-vimeo:focus,.btn-vimeo.focus{color:#fff;background-color:#1295bf;border-color:rgba(0,0,0,0.2)} 131 | .btn-vimeo:hover{color:#fff;background-color:#1295bf;border-color:rgba(0,0,0,0.2)} 132 | .btn-vimeo:active,.btn-vimeo.active,.open>.dropdown-toggle.btn-vimeo{color:#fff;background-color:#1295bf;border-color:rgba(0,0,0,0.2)}.btn-vimeo:active:hover,.btn-vimeo.active:hover,.open>.dropdown-toggle.btn-vimeo:hover,.btn-vimeo:active:focus,.btn-vimeo.active:focus,.open>.dropdown-toggle.btn-vimeo:focus,.btn-vimeo:active.focus,.btn-vimeo.active.focus,.open>.dropdown-toggle.btn-vimeo.focus{color:#fff;background-color:#0f7b9f;border-color:rgba(0,0,0,0.2)} 133 | .btn-vimeo:active,.btn-vimeo.active,.open>.dropdown-toggle.btn-vimeo{background-image:none} 134 | .btn-vimeo.disabled,.btn-vimeo[disabled],fieldset[disabled] .btn-vimeo,.btn-vimeo.disabled:hover,.btn-vimeo[disabled]:hover,fieldset[disabled] .btn-vimeo:hover,.btn-vimeo.disabled:focus,.btn-vimeo[disabled]:focus,fieldset[disabled] .btn-vimeo:focus,.btn-vimeo.disabled.focus,.btn-vimeo[disabled].focus,fieldset[disabled] .btn-vimeo.focus,.btn-vimeo.disabled:active,.btn-vimeo[disabled]:active,fieldset[disabled] .btn-vimeo:active,.btn-vimeo.disabled.active,.btn-vimeo[disabled].active,fieldset[disabled] .btn-vimeo.active{background-color:#1ab7ea;border-color:rgba(0,0,0,0.2)} 135 | .btn-vimeo .badge{color:#1ab7ea;background-color:#fff} 136 | .btn-vk{color:#fff;background-color:#587ea3;border-color:rgba(0,0,0,0.2)}.btn-vk:focus,.btn-vk.focus{color:#fff;background-color:#466482;border-color:rgba(0,0,0,0.2)} 137 | .btn-vk:hover{color:#fff;background-color:#466482;border-color:rgba(0,0,0,0.2)} 138 | .btn-vk:active,.btn-vk.active,.open>.dropdown-toggle.btn-vk{color:#fff;background-color:#466482;border-color:rgba(0,0,0,0.2)}.btn-vk:active:hover,.btn-vk.active:hover,.open>.dropdown-toggle.btn-vk:hover,.btn-vk:active:focus,.btn-vk.active:focus,.open>.dropdown-toggle.btn-vk:focus,.btn-vk:active.focus,.btn-vk.active.focus,.open>.dropdown-toggle.btn-vk.focus{color:#fff;background-color:#3a526b;border-color:rgba(0,0,0,0.2)} 139 | .btn-vk:active,.btn-vk.active,.open>.dropdown-toggle.btn-vk{background-image:none} 140 | .btn-vk.disabled,.btn-vk[disabled],fieldset[disabled] .btn-vk,.btn-vk.disabled:hover,.btn-vk[disabled]:hover,fieldset[disabled] .btn-vk:hover,.btn-vk.disabled:focus,.btn-vk[disabled]:focus,fieldset[disabled] .btn-vk:focus,.btn-vk.disabled.focus,.btn-vk[disabled].focus,fieldset[disabled] .btn-vk.focus,.btn-vk.disabled:active,.btn-vk[disabled]:active,fieldset[disabled] .btn-vk:active,.btn-vk.disabled.active,.btn-vk[disabled].active,fieldset[disabled] .btn-vk.active{background-color:#587ea3;border-color:rgba(0,0,0,0.2)} 141 | .btn-vk .badge{color:#587ea3;background-color:#fff} 142 | .btn-yahoo{color:#fff;background-color:#720e9e;border-color:rgba(0,0,0,0.2)}.btn-yahoo:focus,.btn-yahoo.focus{color:#fff;background-color:#500a6f;border-color:rgba(0,0,0,0.2)} 143 | .btn-yahoo:hover{color:#fff;background-color:#500a6f;border-color:rgba(0,0,0,0.2)} 144 | .btn-yahoo:active,.btn-yahoo.active,.open>.dropdown-toggle.btn-yahoo{color:#fff;background-color:#500a6f;border-color:rgba(0,0,0,0.2)}.btn-yahoo:active:hover,.btn-yahoo.active:hover,.open>.dropdown-toggle.btn-yahoo:hover,.btn-yahoo:active:focus,.btn-yahoo.active:focus,.open>.dropdown-toggle.btn-yahoo:focus,.btn-yahoo:active.focus,.btn-yahoo.active.focus,.open>.dropdown-toggle.btn-yahoo.focus{color:#fff;background-color:#39074e;border-color:rgba(0,0,0,0.2)} 145 | .btn-yahoo:active,.btn-yahoo.active,.open>.dropdown-toggle.btn-yahoo{background-image:none} 146 | .btn-yahoo.disabled,.btn-yahoo[disabled],fieldset[disabled] .btn-yahoo,.btn-yahoo.disabled:hover,.btn-yahoo[disabled]:hover,fieldset[disabled] .btn-yahoo:hover,.btn-yahoo.disabled:focus,.btn-yahoo[disabled]:focus,fieldset[disabled] .btn-yahoo:focus,.btn-yahoo.disabled.focus,.btn-yahoo[disabled].focus,fieldset[disabled] .btn-yahoo.focus,.btn-yahoo.disabled:active,.btn-yahoo[disabled]:active,fieldset[disabled] .btn-yahoo:active,.btn-yahoo.disabled.active,.btn-yahoo[disabled].active,fieldset[disabled] .btn-yahoo.active{background-color:#720e9e;border-color:rgba(0,0,0,0.2)} 147 | .btn-yahoo .badge{color:#720e9e;background-color:#fff} 148 | --------------------------------------------------------------------------------