Initial commit

This commit is contained in:
End 2025-04-30 20:31:01 -07:00 committed by GitHub
commit 47b8c833f9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 47 additions and 0 deletions

6
.gitignore vendored Normal file
View file

@ -0,0 +1,6 @@
*.gem
.bundle
.jekyll-cache
.sass-cache
_site
Gemfile.lock

4
Gemfile Normal file
View file

@ -0,0 +1,4 @@
# frozen_string_literal: true
source "https://rubygems.org"
gemspec

10
README.md Normal file
View 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
View 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
View file

@ -0,0 +1,4 @@
---
---
# tonic-starter

18
tonic-starter.gemspec Normal file
View 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