Skip to content

Commit 3cb8cda

Browse files
authored
Merge pull request #46 from jcook3701/develop
Feat 015 (#45)
2 parents b86dba4 + 21a12d2 commit 3cb8cda

File tree

18 files changed

+90
-41
lines changed

18 files changed

+90
-41
lines changed

.jinja-runtime.json

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,8 @@
77
],
88
"base_dir": "."
99
},
10-
"env": {
11-
"globals": {
12-
"cookiecutter": {
13-
"project_slug": "example_project",
14-
"chosen_license": "MIT"
15-
}
16-
}
10+
"_jinja2_env_vars": {
11+
"lstrip_blocks": true,
12+
"trim_blocks": true
1713
}
1814
}

changelogs/CHANGELOG.md

Lines changed: 15 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -130,17 +130,28 @@ Feat 012 (#39)
130130
- Merge pull request #42 from jcook3701/develop
131131

132132
Feat 013 (#41)
133+
- Feat 014 (#43)
134+
135+
* fix(links): Fix for document links.
136+
137+
* fix(links): More link fixes.
138+
139+
* feat(docs): Added variables to jekyll configuration.
140+
141+
* fix(upgrader): Fixed upgrader file.
142+
- Merge pull request #44 from jcook3701/develop
143+
144+
Feat 014 (#43)
133145

134146
### 🐛 Fixed
135147

136148
- *(template)* Updates to template cookiecutter.json file.
137-
- *(links)* Fix for document links.
138-
- *(links)* More link fixes.
139-
- *(upgrader)* Fixed upgrader file.
149+
- *(links)* More link fixes along with a few configuration fixes to remove warnings.
140150

141151
### 🚀 Added
142152

143-
- *(docs)* Added variables to jekyll configuration.
153+
- *(links)* More links and general docs template updates.
154+
- *(docs)* Documentation updates.
144155
## [0.1.0] - 2025-12-05
145156

146157
### ⚙️ Miscellaneous

changelogs/releases/v0.1.1.md

Lines changed: 15 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -130,14 +130,25 @@ Feat 012 (#39)
130130
- Merge pull request #42 from jcook3701/develop
131131

132132
Feat 013 (#41)
133+
- Feat 014 (#43)
134+
135+
* fix(links): Fix for document links.
136+
137+
* fix(links): More link fixes.
138+
139+
* feat(docs): Added variables to jekyll configuration.
140+
141+
* fix(upgrader): Fixed upgrader file.
142+
- Merge pull request #44 from jcook3701/develop
143+
144+
Feat 014 (#43)
133145

134146
### 🐛 Fixed
135147

136148
- *(template)* Updates to template cookiecutter.json file.
137-
- *(links)* Fix for document links.
138-
- *(links)* More link fixes.
139-
- *(upgrader)* Fixed upgrader file.
149+
- *(links)* More link fixes along with a few configuration fixes to remove warnings.
140150

141151
### 🚀 Added
142152

143-
- *(docs)* Added variables to jekyll configuration.
153+
- *(links)* More links and general docs template updates.
154+
- *(docs)* Documentation updates.

cookiecutter.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@
3232
"ga_tracking": "G-C7PWLWSHB9",
3333
"github_org": null,
3434
"github_username": "jcook3701",
35+
"github_io": "https://{{ cookiecutter.github_username }}.github.io/{{ cookiecutter.project_slug }}",
3536
"twitter_username": "",
3637
"linkedin_usercode": "jared-cook-b3585a114",
3738
"buymeacoffee_username": "jcook3701",

docs/cookiecutter_input.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@
4848
"description": "Github docs cookiecutter template generation.",
4949
"email": "jcook3701+github@gmail.com",
5050
"ga_tracking": "G-C7PWLWSHB9",
51+
"github_io": "https://jcook3701.github.io/github-docs-cookiecutter",
5152
"github_org": null,
5253
"github_username": "jcook3701",
5354
"license": "AGPL-3.0-or-later",

docs/jekyll/Makefile

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -86,12 +86,7 @@ help:
8686
$(AT)echo " version: $(PACKAGE_VERSION)"
8787
$(AT)echo ""
8888
$(AT)echo "Usage:"
89-
$(AT)echo " make ruby-inst\
90-
91-
92-
93-
fddjfsal;dsjfklas;jdklf;JINJA_FILE_LIST
94-
sall Installs Gemfile packages."
89+
$(AT)echo " make ruby-install Installs Gemfile packages."
9590
$(AT)echo " make build Generate Jekyll documentation"
9691
$(AT)echo " make run Serve Jekyll site locally"
9792
$(AT)echo " make clean Clean Jekyll build artifacts"

{{ cookiecutter.project_slug }}/Gemfile

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@ gem "faraday-retry", "~> 2.3"
66
gem "jekyll", "~> 4.4"
77
gem "just-the-docs", "~> 0.11"
88

9+
gem "bigdecimal"
10+
gem "csv"
11+
gem "logger"
12+
gem "base64"
13+
914
group :jekyll_plugins do
1015
gem "jekyll-seo-tag"
1116
gem "jekyll-sitemap"

{{ cookiecutter.project_slug }}/README.md

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# {{ site.title }}
22

3-
[![License](https://img.shields.io/github/license/{{ cookiecutter.github_username }}/{{ cookiecutter.project_slug }})](LICENSE)
3+
[![License](https://img.shields.io/github/license/{{ cookiecutter.github_username }}/{{ cookiecutter.project_slug }})](LICENSE.md)
44

55
__Author:__ {{ site.author }}
66
__Version:__ {{ site.version }}
@@ -19,16 +19,23 @@ __CI/CD Check List:__
1919

2020
***
2121

22-
## Usage Examples
22+
## Getting Started
23+
* [Get {{ cookiecutter.project_name}}]
24+
* [Installation guides]
2325

24-
## Advance Examples
26+
## Documentation
27+
The {{ cookiecutter.project_name }} documentation is available at [docs]({{ site.github_io_url }})
2528

26-
## Development Strategy
29+
## Contributing
30+
If you're interested in contributing to the {{ cookiecutter.project_name }} project:
31+
* Start by reading the [contributing guide]({{ site.github_io_url }}/developer-resources/contribute.md).
32+
* Learn how to setup your local environment, in our [developer guide]({{ site.github_io_url }}/contribute/developer-guide.md).
33+
* Look through our [style guide]({{ site.github_io_url }}/contribute/style-guides/index.md).
2734

2835
## License
2936
{{ cookiecutter.copyright }}
3037

3138
This project is licensed under the __{{ cookiecutter.license }} License__.
32-
See the [LICENSE](LICENSE) file for the full license text.
39+
See the [LICENSE]({{ site.repo_blob }}/LICENSE.md) file for the full license text.
3340

3441
SPDX-License-Identifier: {{ cookiecutter.license }}

{{ cookiecutter.project_slug }}/_config.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ remote_theme: "{{ cookiecutter.theme }}"
99
ga_tracking: "{{ cookiecutter.ga_tracking }}"
1010

1111
repo_url: "{{ cookiecutter.repo_url }}"
12-
repo_blob: "{{cookiecutter.repo_url }}/blob/{{ cookiecutter._checkout }}/"
13-
github_io_url: "https://{{ cookiecutter.github_username }}.github.io/"
12+
repo_blob: "{{cookiecutter.repo_url }}/blob/{{ cookiecutter._checkout }}"
13+
github_io_url: "{{ cookiecutter.github_io }}"
1414
repository: "{{ cookiecutter.github_username }}/{{ cookiecutter.project_slug }}"
1515

1616
# Specifies the site's subpath for correct URL generation
@@ -102,7 +102,7 @@ back_to_top_text: "Back to top"
102102

103103
footer_content: >-
104104
{{ cookiecutter.copyright }}. Distributed by an
105-
<a href="{{ cookiecutter.repo_url }}/blob/master/LICENSE">
105+
<a href="{{ cookiecutter.repo_url }}/blob/master/LICENSE.md">
106106
{{ cookiecutter.license }} license.
107107
</a>
108108
<a href=""></a>

{{ cookiecutter.project_slug }}/_manual/contribute/developer-guide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ $ make format-check
4141
$ make format-fix
4242
```
4343

44-
### 🔍 Linting (jinja2-cli, ruff, tomllint, & yaml-lint)
44+
### 🔍 Linting (djlint, ruff, tomllint, & yaml-lint)
4545

4646
``` shell
4747
$ make lint-check

0 commit comments

Comments
 (0)