Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mattstratton/castanet.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.github/ISSUE_TEMPLATE20
-rw-r--r--README.md8
-rw-r--r--contributing.json21
-rw-r--r--exampleSite/config.toml4
-rw-r--r--theme.toml6
5 files changed, 47 insertions, 12 deletions
diff --git a/.github/ISSUE_TEMPLATE b/.github/ISSUE_TEMPLATE
new file mode 100644
index 0000000..15609bd
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE
@@ -0,0 +1,20 @@
+// Delete the lines starting with "//" before submitting
+//
+// If this is an enhancement request, please label it as "Enhancement" prior to submitting. If you do not have
+// permissions to label issues, please include "[Enhancement]" at the beginning of your issue title (caps matter)
+// If this is an enhancement, please remove all any sample text that does not apply
+//
+// If this issue is a bug, please label it as "Bug" prior to submitting. If you do not have permissions to
+// label issues, please include "[Bug]" at the beginning of your issue title (caps matter)
+
+### Expected behavior
+
+### Actual behavior
+
+### Reproduction Steps
+
+### Operating System and Version
+
+### Web Browser and Version
+
+### Hugo Version
diff --git a/README.md b/README.md
index b057f13..8b68648 100644
--- a/README.md
+++ b/README.md
@@ -3,12 +3,6 @@
[![Github All Releases](https://img.shields.io/github/downloads/mattstratton/castanet/total.svg)]()
[![license](https://img.shields.io/github/license/mattstratton/castanet.svg)]()
-[![Stories in Ready](https://badge.waffle.io/mattstratton/castanet.svg?label=ready&title=Ready)](http://waffle.io/mattstratton/castanet) [![Stories in Progress](https://badge.waffle.io/mattstratton/castanetb.svg?label=ready&title=In%20Progress)](http://waffle.io/mattstratton/castanet)
-
-You can see progress on tasks at http://waffle.io/mattstratton/castanet
-
-[![Throughput Graph](https://graphs.waffle.io/mattstratton/castanet/throughput.svg)](https://waffle.io/devopsdays/devopsdays-web/metrics)
-
If you would like to receive emails when new versions of this theme are released, [subscribe to the announcement email list](http://eepurl.com/cMAJcL).
# Castanet
@@ -47,7 +41,7 @@ You will need to add a handful of configuration items to your `config.toml` file
- `copyright_notice` - Your copyright information for the footer of the page. Can contain Markdown. Example: `"Copyright 2016 [Matt Stratton](https://www.mattstrattion.io)"`
- `itunes_subscribe` - The URL of your podcast in the iTunes store. Optional. Example: `"http://itunes.apple.com/us/podcast/arrested-devops/id773888088?mt=2&uo=4&at=11lsCi"`
- `android_subscribe` - The URL for your podcast for Android users. You can generate this URL at [Subscribe on Android](https://subscribeonandroid.com). Optional. Example: ``"http://subscribeonandroid.com/feeds.podtrac.com/VGAulpN7MY1U"``
- - `google_play_subscribe` The URL to your podcast in the Google Play store. Optional. Example: `"https://goo.gl/app/playmusic?ibi=com.google.PlayMusic&isi=691797987&ius=googleplaymusic&link=https://play.google.com/music/m/Ihj4yege3lfmp3vs5yoopgxijpi?t%3DArrested_DevOps"``
+ - `google_play_subscribe` The URL to your podcast in the Google Play store. Optional. Example: `"https://goo.gl/app/playmusic?ibi=com.google.PlayMusic&isi=691797987&ius=googleplaymusic&link=https://play.google.com/music/m/Ihj4yege3lfmp3vs5yoopgxijpi?t%3DArrested_DevOps"`
- `mailchimp_subscribe` - The URL for your MailChimp signup form. This can be acquired from creating a "Super Slim" Embedded form on MailChimp. Additional instructions may be provided later. Do NOT include the entire form HTML; you just need the path for the `form action`. Optional. Example: `"//arresteddevops.us3.list-manage.com/subscribe/post?u=5e4cbcac996bb9df25f970a89&id=154fa76bcc"`
- `rss_subscribe` - Optional parameter to over-ride the RSS feed URL, in case you use something like Feedburner. You likely do NOT need to set this parameter unless you have a very good reason to do so.
- `description` - Description of your show. Can use Markdown. Example: `"The HugoCast is the best podcast you've ever seen. You will learn everything you ever needed to know about [podcasting](https://en.wikipedia.org/wiki/Podcast) from the most inspiring experts to ever show up on the whole internet."`
diff --git a/contributing.json b/contributing.json
new file mode 100644
index 0000000..296f39a
--- /dev/null
+++ b/contributing.json
@@ -0,0 +1,21 @@
+// https://gitmagic.io/rules
+{
+ "pull_request": {
+ "subject_cannot_be_empty": true,
+ "subject_must_be_longer_than": 4,
+ "subject_must_be_shorter_than": 101,
+ "subject_must_not_end_with_dot": true,
+
+ "body_cannot_be_empty": true,
+ "body_must_include_verification_steps": false
+ },
+ "issue": {
+ "subject_cannot_be_empty": true,
+ "subject_must_be_longer_than": 4,
+ "subject_must_be_shorter_than": 101,
+ "subject_must_not_end_with_dot": true,
+
+ "body_cannot_be_empty": true,
+ "body_must_include_reproduction_steps": ["bug"],
+ }
+}
diff --git a/exampleSite/config.toml b/exampleSite/config.toml
index 0d32f8d..06d1dda 100644
--- a/exampleSite/config.toml
+++ b/exampleSite/config.toml
@@ -39,8 +39,8 @@ themesdir = "../.."
parent = "resources"
[params]
-site_theme = "blue"
-site_layout = "grid"
+site_theme = "orange"
+site_layout = "row"
# about_logo = "/img/hugocast.png"
copyright_notice = "Copyright 2016 [Matt Stratton](https://www.mattstrattion.io)"
itunes_subscribe = "http://itunes.apple.com/us/podcast/arrested-devops/id773888088?mt=2&uo=4&at=11lsCi"
diff --git a/theme.toml b/theme.toml
index 5fcd775..abf6a27 100644
--- a/theme.toml
+++ b/theme.toml
@@ -4,10 +4,10 @@
name = "Castanet"
license = "MIT"
licenselink = "https://github.com/mattstratton/castanet/blob/master/LICENSE.md"
-description = ""
+description = "A podcast-oriented theme for Hugo"
homepage = "https://github.com/mattstratton/castanet"
-tags = ["", ""]
-features = ["", ""]
+tags = ["podcast", "responsive"]
+features = ["podcast RSS", "subscribe buttons"]
min_version = 0.19
theme_version = 0.3.0