Skip to content

Commit f49f204

Browse files
committed
Update with more explanatory text
1 parent fcc4a7a commit f49f204

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

_learn/10-templating.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,21 +24,21 @@ The Read the Docs theme for Sphinx uses Python variables to indicate the version
2424

2525
A practical example for storing a value for version would be in the `_config.yml` file in a Jekyll project. In this case, you want to output the older versions of the docs site to different base URLs, and there was a product name change from one version to the next.
2626

27-
`_config.yml`
27+
Take this `_config.yml` file, which is for the current version, where the product is named "Oppogrid" and you want to have /latest/ in the URL:
2828

2929
```
3030
baseurl : /versions-jekyll/latest
3131
productname : Oppogrid
3232
```
3333

34-
`_config.4.2.yml`
34+
The numbered version is 4.2, so this `_config.4.2.yml` file outputs to a /4.2/ URL but this release is the one with the new product name.
3535

3636
```
3737
baseurl : /versions-jekyll/4.2
3838
productname : Oppogrid
3939
```
4040

41-
`_config.4.1.yml`
41+
In this release, `_config.4.1.yml`, the product was named "Opposcale" and all the product name mentions can correctly subsititue in the right value for that release point.
4242

4343
```
4444
baseurl : /versions-jekyll/4.1

learn/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ layout: collection
33
permalink: /learn/
44
collection: learn
55
entries_layout: grid
6-
last_modified_at: Sat Jul 28 10:56:38 CDT 2018
6+
last_modified_at: Tue Jun 7 21:15:31 CDT 2022
77
---
88

99
Sphinx, Jekyll, and Hugo, all are static site generators that teams use for web sites and documentation sites. Let's go through setting up a static site generator and a common CICD system with it.

0 commit comments

Comments
 (0)