mirror of
https://github.com/System-End/jekyll-theme-end.git
synced 2026-04-19 16:28:22 +00:00
Initial commit
This commit is contained in:
commit
47b8c833f9
6 changed files with 47 additions and 0 deletions
6
.gitignore
vendored
Normal file
6
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
*.gem
|
||||
.bundle
|
||||
.jekyll-cache
|
||||
.sass-cache
|
||||
_site
|
||||
Gemfile.lock
|
||||
4
Gemfile
Normal file
4
Gemfile
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
# frozen_string_literal: true
|
||||
|
||||
source "https://rubygems.org"
|
||||
gemspec
|
||||
10
README.md
Normal file
10
README.md
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
# Tonic Starter
|
||||
|
||||
A sample [Jekyll](https://jekyllrb.com) theme designed to be a starting point for all [Tonic](https://github.com/hackclub/tonic) submissions.
|
||||
|
||||
This template is intentionally left incomplete; users should play through Tonic to learn how to make a full-featured theme.
|
||||
|
||||
# Usage
|
||||
1. At the top of this page, select **Use this template** > **Create a new repository** to clone the template to your account.
|
||||
2. Create a codespace from the created repository (for beginners) or use `git clone` (for advanced users) to start pushing commits.
|
||||
3. Run `gem install jekyll`, then `jekyll serve` to see the template in action.
|
||||
5
_config.yml
Normal file
5
_config.yml
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
title: tonic-starter
|
||||
description: ""
|
||||
encoding: utf-8
|
||||
|
||||
exclude: ["README.md", "LICENSE", "*.gem", "*.gemspec", "Gemfile.lock"]
|
||||
4
index.md
Normal file
4
index.md
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
---
|
||||
---
|
||||
|
||||
# tonic-starter
|
||||
18
tonic-starter.gemspec
Normal file
18
tonic-starter.gemspec
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
# coding: utf-8
|
||||
# frozen_string_literal: true
|
||||
|
||||
Gem::Specification.new do |spec|
|
||||
spec.name = "tonic-starter"
|
||||
spec.version = "0.1.0"
|
||||
spec.authors = [""]
|
||||
spec.email = [""]
|
||||
|
||||
spec.summary = ""
|
||||
spec.homepage = ""
|
||||
|
||||
spec.files = `git ls-files -z`.split("\x0").select { |f| f.match(%r!^(assets|_layouts|_includes|_sass|LICENSE|README|_config\.yml|404\.md)!i) }
|
||||
|
||||
spec.add_runtime_dependency "jekyll", ">= 3.9.0"
|
||||
|
||||
spec.add_development_dependency "bundler"
|
||||
end
|
||||
Loading…
Add table
Reference in a new issue