Initial commit
parents
No related branches found
No related tags found
Showing
- .gitignore 5 additions, 0 deletions.gitignore
- Gemfile 4 additions, 0 deletionsGemfile
- LICENSE.txt 21 additions, 0 deletionsLICENSE.txt
- README.md 52 additions, 0 deletionsREADME.md
- _config.yml 12 additions, 0 deletions_config.yml
- _includes/footer.html 52 additions, 0 deletions_includes/footer.html
- _includes/header.html 13 additions, 0 deletions_includes/header.html
- _layouts/default.html 29 additions, 0 deletions_layouts/default.html
- _layouts/page.html 5 additions, 0 deletions_layouts/page.html
- _layouts/post.html 5 additions, 0 deletions_layouts/post.html
- _sass/elixir.scss 5 additions, 0 deletions_sass/elixir.scss
- _sass/elixir/_base.scss 16 additions, 0 deletions_sass/elixir/_base.scss
- _sass/elixir/_layout.scss 157 additions, 0 deletions_sass/elixir/_layout.scss
- assets/main.scss 5 additions, 0 deletionsassets/main.scss
- elixir-theme.gemspec 19 additions, 0 deletionselixir-theme.gemspec
- test.md 9 additions, 0 deletionstest.md
.gitignore
0 → 100644
Gemfile
0 → 100644
# frozen_string_literal: true | ||
source "https://rubygems.org" | ||
gemspec |
LICENSE.txt
0 → 100644
README.md
0 → 100644
_config.yml
0 → 100644
_includes/footer.html
0 → 100644
_includes/header.html
0 → 100644
_layouts/default.html
0 → 100644
_layouts/page.html
0 → 100644
_layouts/post.html
0 → 100644
_sass/elixir.scss
0 → 100644
_sass/elixir/_base.scss
0 → 100644
_sass/elixir/_layout.scss
0 → 100644
assets/main.scss
0 → 100644
elixir-theme.gemspec
0 → 100644
# frozen_string_literal: true | ||
Gem::Specification.new do |spec| | ||
spec.name = "elixir-theme" | ||
spec.version = "0.1.0" | ||
spec.authors = ["jacek.lebioda"] | ||
spec.email = ["jacek.lebioda@uni.lu"] | ||
spec.summary = "Jekyll theme for ELIXIR blog site" | ||
spec.homepage = "https://git-r3lab.uni.lu/elixir/elixir-theme" | ||
spec.license = "Apache2" | ||
spec.files = `git ls-files -z`.split("\x0").select { |f| f.match(%r!^(assets|_layouts|_includes|_sass|LICENSE|README)!i) } | ||
spec.add_runtime_dependency "jekyll", "~> 3.8" | ||
spec.add_development_dependency "bundler", "~> 1.16" | ||
spec.add_development_dependency "rake", "~> 12.0" | ||
end |
test.md
0 → 100644
Please register or sign in to comment