forked from daattali/beautiful-jekyll
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of github.com:daattali/beautiful-jekyll into up…
…date-from-upstream * 'master' of github.com:daattali/beautiful-jekyll: (109 commits) Addes a .box-success class (daattali#469) Integration with just-comments (daattali#468) German translation improvement (daattali#456) README.md: add solution of write permission when setup docker env (daattali#450) Correct typo introduced at fe40d41 (daattali#449) Fixed avatar img link on LINE51 (contained space) (daattali#448) Fix Staticman's raw JSON response in daattali#440 (daattali#444) Update staticman.yml Update _config.yml Update README.md Update head.html Add newline to EOF (daattali#442) [Feature] Staticman v3 Support (daattali#440) http -> https (daattali#439) add missing https in link (daattali#433) Updates github-pages to v193 (daattali#426) fix security vulnerabilities (daattali#423) Moved Google Analytics to the Head (daattali#419) Create issue_template.md Update pull_request_template.md ...
- Loading branch information
Showing
39 changed files
with
1,572 additions
and
414 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
# Define standard eol format | ||
|
||
# Web Files | ||
*.html text eol=lf | ||
*.md text eol=lf | ||
*.css text eol=lf | ||
*.js text eol=lf | ||
|
||
# Jekyll related files | ||
*.yml text eol=lf | ||
|
||
# Git related files | ||
.gittattributes text eol=lf | ||
.gitignore text eol=lf | ||
.gitkeep text eol=lf | ||
|
||
# Ruby files | ||
*.rb text eol=lf | ||
Gemfile text eol=lf | ||
Gemfile.lock text eol=lf | ||
|
||
# Github specific fies | ||
LICENCE text eol=lf | ||
|
||
# Docker specific files | ||
Dockerfile text eol=lf | ||
|
||
# VSCode files | ||
*.json text eol=lf | ||
|
||
# General multimedia files | ||
*.jpg binary | ||
*.jpeg binary | ||
*.gif binary | ||
*.png binary | ||
*.t3x binary | ||
*.t3d binary | ||
*.exe binary | ||
*.data binary | ||
*.ttf binary | ||
*.eof binary | ||
*.eot binary | ||
*.swf binary | ||
*.mov binary | ||
*.mp4 binary | ||
*.mp3 binary | ||
*.ogg binary | ||
*.flv binary |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,44 +1,8 @@ | ||
FROM mangar/jekyll:1.0 | ||
FROM jekyll/jekyll | ||
|
||
MAINTAINER Marcio Mangar "[email protected]" | ||
COPY Gemfile . | ||
COPY Gemfile.lock . | ||
|
||
RUN gem install jekyll -v 3.1.6 | ||
RUN gem install bundler | ||
RUN bundle install --quiet --clean | ||
|
||
RUN gem install execjs | ||
RUN gem install therubyracer | ||
RUN gem install github-pages | ||
RUN gem install jekyll-paginate | ||
RUN gem install jekyll-seo-tag | ||
RUN gem install jekyll-gist | ||
RUN gem install json -v 1.8.3 | ||
|
||
RUN gem install minitest -v 5.9.0 | ||
RUN gem install colorator -v 0.1 | ||
RUN gem install ffi -v 1.9.10 | ||
RUN gem install kramdown -v 1.10.0 | ||
RUN gem install rouge -v 1.10.1 | ||
RUN gem install pkg-config -v 1.1.7 | ||
RUN gem install terminal-table -v 1.6.0 | ||
RUN gem install ethon -v 0.9.0 | ||
RUN gem install nokogiri -v 1.6.8 | ||
RUN gem install activesupport -v 4.2.6 | ||
RUN gem install html-pipeline -v 2.4.1 | ||
RUN gem install jekyll-watch -v 1.4.0 | ||
RUN gem install github-pages-health-check -v 1.1.0 | ||
RUN gem install jekyll-github-metadata -v 2.0.0 | ||
RUN gem install jekyll-mentions -v 1.1.2 | ||
RUN gem install jekyll-redirect-from -v 0.10.0 | ||
RUN gem install jemoji -v 0.6.2 | ||
RUN gem install github-pages -v 82 | ||
|
||
|
||
|
||
RUN mkdir -p /app | ||
ADD ./ /app | ||
|
||
WORKDIR /app | ||
|
||
EXPOSE 4000 | ||
|
||
CMD bundle exec jekyll serve | ||
CMD ["jekyll", "serve"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,6 +30,27 @@ avatar: "/img/avatar-icon.png" | |
# then specify the following parameter | ||
# title-img: /path/to/image | ||
|
||
# --- Background colour/image options --- # | ||
|
||
# Personalize the colors in your website. Colour values can be any valid CSS colour | ||
|
||
navbar-col: "#F5F5F5" | ||
navbar-text-col: "#404040" | ||
navbar-children-col: "#F5F5F5" | ||
page-col: "#FFFFFF" | ||
link-col: "#008AFF" | ||
hover-col: "#0085A1" | ||
footer-col: "#F5F5F5" | ||
footer-text-col: "#777777" | ||
footer-link-col: "#404040" | ||
|
||
# Alternatively, the navbar, footer, and page background can be set to use background images | ||
# instead of colour | ||
|
||
# navbar-img: "/img/bgimage.png" | ||
# footer-img: "/img/bgimage.png" | ||
# page-img: "/img/bgimage.png" | ||
|
||
# --- Footer options --- # | ||
|
||
# Change all these values or delete the ones you don't want. | ||
|
@@ -39,23 +60,29 @@ author: | |
email: "[email protected]" | ||
github: PhysicsCodingClub | ||
|
||
# Select which links to show in the footer | ||
footer-links-active: | ||
email: true | ||
github: true | ||
# Select your active Social Network Links. | ||
# Uncomment the links you want to show in the footer and add your information to each link. | ||
# You can reorder the items to define the link order. | ||
# If you want to add a new link that isn't here, you'll need to also edit the file _data/SocialNetworks.yml | ||
social-network-links: | ||
rss: false | ||
facebook: false | ||
twitter: false | ||
google-plus: false | ||
reddit: false | ||
linkedin: false | ||
xing: false | ||
stackoverflow: false | ||
snapchat: false | ||
instagram: false | ||
youtube: false | ||
spotify: false | ||
telephone: false | ||
# email: "[email protected]" | ||
# facebook: daattali | ||
# github: daattali | ||
# twitter: daattali | ||
# reddit: yourname | ||
# google-plus: +DeanAttali | ||
# linkedin: daattali | ||
# xing: yourname | ||
# stackoverflow: "3943160/daattali" | ||
# snapchat: deanat78 | ||
# instagram: deanat78 | ||
# youtube: user/deanat78 | ||
# spotify: yourname | ||
# telephone: +14159998888 | ||
# steam: deanat78 | ||
# twitch: yourname | ||
# yelp: yourname | ||
|
||
# Select which share links to show in posts | ||
share-links-active: | ||
|
@@ -74,6 +101,38 @@ share-links-active: | |
# Google Tag Manager ID | ||
#gtm: "" | ||
|
||
# Matomo (aka Piwik) Web statistics | ||
# Uncomment the following section to enable Matomo. The opt-out parameter controls | ||
# whether or not you want to allow users to opt out of tracking. | ||
|
||
#matomo: | ||
# site_id: "9" | ||
# uri: "demo.wiki.pro" | ||
# opt-out: true | ||
|
||
# --- Comments --- # | ||
|
||
# Fill in your Disqus shortname (NOT the userid) if you want to support Disqus comments | ||
# disqus: "" | ||
# If you want to use just-comments fill with the API Key | ||
#just-comments: "ABCD-EFGH-IJKL" | ||
|
||
# To use Facebook Comments, fill in a Facebook App ID | ||
# fb_comment_id: "" | ||
|
||
# Staticman support | ||
staticman: | ||
repository : # GitHub username/repository eg. "daattali/beautiful-jekyll" | ||
branch : # eg. "master" If you're not using `master` branch, then you also need to update the `branch` parameter in `staticman.yml` | ||
endpoint : # URL of your own deployment (with trailing slash) (will fallback to a public GitLab instance) | ||
reCaptcha: | ||
# reCaptcha for Staticman (OPTIONAL) | ||
# If you use reCaptcha, you must also set these parameters in staticman.yml | ||
siteKey : # Use your own site key, you need to apply for one on Google | ||
secret : # ENCRYPT your password by going to https://staticman3.herokuapp.com/v3/encrypt/<your-site-secret> | ||
|
||
# --- Misc --- # | ||
|
||
# Facebook App ID | ||
# fb_app_id: "" | ||
|
||
|
@@ -115,8 +174,8 @@ defaults: | |
layout: "page" | ||
show-avatar: true | ||
|
||
# Use tags pages (not recommended if you are deploying via GitHub pages, only set to true if deploying locally with ruby) | ||
link-tags: false | ||
# Use tags index page and make tags on each post clickable | ||
link-tags: true | ||
|
||
# Exclude these files from production site | ||
exclude: | ||
|
@@ -190,6 +249,7 @@ prose: | |
|
||
plugins: | ||
- jekyll-paginate | ||
- jekyll-sitemap | ||
|
||
# Beautiful Jekyll / Dean Attali | ||
# 2fc73a3a967e97599c9763d05e564189 |
Oops, something went wrong.