Skip to content

Commit 063dfde

Browse files
committed
Bump Theme 5.18
1 parent 6d5a643 commit 063dfde

File tree

57 files changed

+153
-260
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

57 files changed

+153
-260
lines changed

.gitlab-ci.yml

Lines changed: 43 additions & 43 deletions
Original file line numberDiff line numberDiff line change
@@ -1,50 +1,50 @@
1-
image: docker:20.10.11
1+
# image: docker:20.10.11
22

3-
variables:
4-
# When using dind service, you must instruct docker to talk with the
5-
# daemon started inside of the service. The daemon is available with
6-
# a network connection instead of the default /var/run/docker.sock socket.
7-
#
8-
# The 'docker' hostname is the alias of the service container as described at
9-
# https://docs.gitlab.com/ee/ci/docker/using_docker_images.html#accessing-the-services
10-
#
11-
# If you're using GitLab Runner 12.7 or earlier with the Kubernetes executor and Kubernetes 1.6 or earlier,
12-
# the variable must be set to tcp://localhost:2375 because of how the
13-
# Kubernetes executor connects services to the job container
14-
# DOCKER_HOST: tcp://localhost:2375
15-
#
16-
DOCKER_HOST: tcp://docker:2375
17-
#
18-
# This instructs Docker not to start over TLS.
19-
DOCKER_TLS_CERTDIR: ""
20-
#
21-
# Checkout submodules recursively
22-
GIT_SUBMODULE_STRATEGY: recursive
3+
# variables:
4+
# # When using dind service, you must instruct docker to talk with the
5+
# # daemon started inside of the service. The daemon is available with
6+
# # a network connection instead of the default /var/run/docker.sock socket.
7+
# #
8+
# # The 'docker' hostname is the alias of the service container as described at
9+
# # https://docs.gitlab.com/ee/ci/docker/using_docker_images.html#accessing-the-services
10+
# #
11+
# # If you're using GitLab Runner 12.7 or earlier with the Kubernetes executor and Kubernetes 1.6 or earlier,
12+
# # the variable must be set to tcp://localhost:2375 because of how the
13+
# # Kubernetes executor connects services to the job container
14+
# # DOCKER_HOST: tcp://localhost:2375
15+
# #
16+
# DOCKER_HOST: tcp://docker:2375
17+
# #
18+
# # This instructs Docker not to start over TLS.
19+
# DOCKER_TLS_CERTDIR: ""
20+
# #
21+
# # Checkout submodules recursively
22+
# GIT_SUBMODULE_STRATEGY: recursive
2323

24-
services:
25-
- docker:20.10.11-dind
24+
# services:
25+
# - docker:20.10.11-dind
2626

27-
before_script:
28-
- docker info
29-
- docker login -u $CI_REGISTRY_USER -p $CI_REGISTRY_PASSWORD $CI_REGISTRY
27+
# before_script:
28+
# - docker info
29+
# - docker login -u $CI_REGISTRY_USER -p $CI_REGISTRY_PASSWORD $CI_REGISTRY
3030

31-
build-latest:
32-
stage: build
33-
only:
34-
- tags
35-
script:
36-
- docker pull $CI_REGISTRY_IMAGE:latest || true
37-
- docker build --cache-from $CI_REGISTRY_IMAGE:latest --tag $CI_REGISTRY_IMAGE:$CI_COMMIT_SHA --tag $CI_REGISTRY_IMAGE:latest .
38-
- docker push $CI_REGISTRY_IMAGE:$CI_COMMIT_SHA
39-
- docker push $CI_REGISTRY_IMAGE:latest
40-
41-
# build-branches:
31+
# build-latest:
4232
# stage: build
43-
# except:
44-
# - master
45-
# - main
33+
# only:
34+
# - tags
4635
# script:
47-
# - docker pull $CI_REGISTRY_IMAGE:$CI_COMMIT_BRANCH || true
48-
# - docker build --cache-from $CI_REGISTRY_IMAGE:latest --tag $CI_REGISTRY_IMAGE:$CI_COMMIT_SHA --tag $CI_REGISTRY_IMAGE:$CI_COMMIT_BRANCH .
36+
# - docker pull $CI_REGISTRY_IMAGE:latest || true
37+
# - docker build --cache-from $CI_REGISTRY_IMAGE:latest --tag $CI_REGISTRY_IMAGE:$CI_COMMIT_SHA --tag $CI_REGISTRY_IMAGE:latest .
4938
# - docker push $CI_REGISTRY_IMAGE:$CI_COMMIT_SHA
50-
# - docker push $CI_REGISTRY_IMAGE:$CI_COMMIT_BRANCH
39+
# - docker push $CI_REGISTRY_IMAGE:latest
40+
41+
# # build-branches:
42+
# # stage: build
43+
# # except:
44+
# # - master
45+
# # - main
46+
# # script:
47+
# # - docker pull $CI_REGISTRY_IMAGE:$CI_COMMIT_BRANCH || true
48+
# # - docker build --cache-from $CI_REGISTRY_IMAGE:latest --tag $CI_REGISTRY_IMAGE:$CI_COMMIT_SHA --tag $CI_REGISTRY_IMAGE:$CI_COMMIT_BRANCH .
49+
# # - docker push $CI_REGISTRY_IMAGE:$CI_COMMIT_SHA
50+
# # - docker push $CI_REGISTRY_IMAGE:$CI_COMMIT_BRANCH

config.toml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ theme = ["hugo-theme-relearn"]
2020
# TELE - Teleprompter
2121
# EMBED - Embeddable Version
2222
[outputs]
23-
home = ["HTML", "RSS", "PRINT", "JSON"]
23+
home = ["HTML", "RSS", "PRINT", "SEARCH", "SEARCHPAGE"]
2424
section = ["HTML", "RSS", "PRINT", "TELE", "EMBED"]
2525
page = ["HTML", "RSS", "PRINT", "TELE", "EMBED"]
2626

@@ -87,7 +87,9 @@ theme = ["hugo-theme-relearn"]
8787
# this can be overridden in the pages frontmatter
8888
ordersectionsby = "weight"
8989
# Change default color scheme with a variant one. Eg. can be "red", "blue", "green" or an array like [ "blue", "green" ].
90-
themeVariant = ["light-theme", "dark-theme"]
90+
themeVariant = ["auto", "light-theme", "dark-theme"]
91+
# The first element is the variant for light mode, the second for dark mode
92+
themeVariantAuto = ["light-theme", "dark-theme"]
9193
# Change the title separator. Default to "::".
9294
# titleSeparator = "-"
9395
# If set to true, the menu in the sidebar will be displayed in a collapsible tree view.
Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,12 @@
11
+++
22
title = "HS Introduction"
33
weight = 6
4-
chapter = true
4+
archetype = "chapter"
5+
ordinal = "0"
56
pre = "<b>0. </b>"
67
hidden = true
78
noprint = true
89
+++
910

10-
### Chapter 0
11-
12-
# High School Introduction
1311

1412
Welcome to the Fundamental Computer Programming Concepts course!

content/00-introduction/_index.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,10 @@
22
title = "Introduction"
33
date = 2018-08-24T10:53:05-05:00
44
weight = 5
5-
chapter = true
5+
archetype = "chapter"
6+
ordinal = "0"
67
pre = "<b>0. </b>"
78
+++
89

9-
### Chapter 0
10-
11-
# Introduction
1210

1311
Welcome to the Fundamental Computer Programming Concepts course!
Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
11
+++
22
title = "Java Hello World"
33
weight = 70
4-
chapter = true
4+
archetype = "chapter"
5+
ordinal = "7.J"
56
pre = "<b>7.J </b>"
67
+++
78

8-
### Chapter 1 - Java
9-
10-
# Hello World Tutorial
119

1210
Hello World in Java
Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
11
+++
22
title = "Python Hello World Tutorial"
33
weight = 71
4-
chapter = true
4+
archetype = "chapter"
5+
ordinal = "7.P"
56
pre = "<b>7.P </b>"
67
hidden = true
78
+++
89

9-
### Chapter 1 - Python
10-
11-
# Hello World Tutorial
1210

1311
Hello World in Python
Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
11
+++
22
title = "Object-Oriented Programming"
33
weight = 10
4-
chapter = true
4+
archetype = "chapter"
5+
ordinal = "1"
56
pre = "<b>1. </b>"
67
+++
78

8-
### Chapter 1
9-
10-
# Object-Oriented Programming
119

1210
Representing Real-World Objects in Code
Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
11
+++
22
title = "Java Data Types"
33
weight = 80
4-
chapter = true
4+
archetype = "chapter"
5+
ordinal = "8.J"
56
pre = "<b>8.J </b>"
67
+++
78

8-
### Chapter 2 - Java
9-
10-
# Data Types Tutorial
119

1210
Data Types in Java
Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
11
+++
22
title = "Python Data Types Tutorial"
33
weight = 81
4-
chapter = true
4+
archetype = "chapter"
5+
ordinal = "8.P"
56
pre = "<b>8.P </b>"
67
hidden = true
78
+++
89

9-
### Chapter 2 - Python
10-
11-
# Data Types Tutorial
1210

1311
Data Types in Python

content/02-data-types-math/_index.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
11
+++
22
title = "Data Types & Math"
33
weight = 20
4-
chapter = true
4+
archetype = "chapter"
5+
ordinal = "2"
56
pre = "<b>2. </b>"
67
+++
78

8-
### Chapter 2
99

10-
# Data Types & Math
1110

1211
Storing and Manipulating Basic Numerical Data
1312

0 commit comments

Comments
 (0)