Skip to content

Commit d212687

Browse files
authored
Merge pull request #6 from mcpt/master
Merge changes to Part I Lesson (prototype) branch
2 parents eb02fef + 492125d commit d212687

12 files changed

Lines changed: 37 additions & 17 deletions

File tree

.github/workflows/gh-pages.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ on:
44
push:
55
branches:
66
- master # Set a branch to deploy
7-
pull_request:
87

98
jobs:
109
deploy:

config.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,7 @@ home = ["HTML", "RSS", "JSON"]
99

1010
[params]
1111
themeVariant = "mcpt"
12+
custom_js_urls = ['//toolness.github.io/p5.js-widget/p5-widget.js']
13+
14+
[markup.goldmark.renderer]
15+
unsafe = true

content/game-dev/_index.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,4 @@ weight = 1
99

1010
Welcome to the return of MCPT's Game Development Series!
1111

12-
{{% notice info %}}
13-
Participate to earn **GAME DEV POINTS**, which will award you with a *surprise* during the [Game Jam](/game-jam)!
14-
15-
Each participation will be worth **200** points, with winners of the *special challenges* earning an extra **100** points per challenge.
16-
{{% /notice %}}
12+
![Banner](/img/Game_Dev_Banner.png)

content/game-dev/leaderboard.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ weight = 1
77

88
| Rank | Name | Part I | Part II | Part III | Total Points |
99
|------|----------|--------|---------|----------|--------------|
10-
| 1 | Ben Zeng | -9999 | --- | --- | -9999 |
10+
| --- | Nobody's here! You could be the first... | --- | --- | --- | --- |
1111

1212
{{% notice info %}}
1313
Participate to earn **GAME DEV POINTS**, which will award you with a *surprise* during the [Game Jam](/game-jam)!

content/game-dev/part-i/_index.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,8 @@ weight = 1
88
### Game Series
99
# Part I
1010

11-
#### Coming Soon...
12-
*The Premiere, Interactive, Challenge-Based, Game-Development Workshop. Coming to WLMAC on **November 11th!***
11+
{{% notice info "Coming to WLMAC on November 11th, 2021!" %}}
12+
*Premiere, Interactive, Tower-Defense Game Workshop for Programmers of All Levels...*
13+
{{% /notice %}}
1314

14-
<div>
15-
16-
</div>
15+
![Banner](/img/Game_Dev_Banner.png)

content/game-dev/part-ii/_index.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ weight = 2
77
### Game Series
88
# Part II
99

10-
#### Coming Soon...
11-
*The Premiere, Interactive, Challenge-Based, Game-Development Workshop. Coming to WLMAC on **November 25th**!*
10+
{{% notice info "Coming to WLMAC on November 25th, 2021!" %}}
11+
*Premiere, Interactive, Tower-Defense Game Workshop for Programmers of All Levels...*
12+
{{% /notice %}}
1213

14+
![Banner](/img/Game_Dev_Banner.png)

content/game-dev/part-iii/_index.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ weight = 3
77
### Game Series
88
# Part III
99

10-
#### Coming Soon...
11-
*The Premiere, Interactive, Challenge-Based, Game-Development Workshop. Coming to WLMAC on **December 10th!***
10+
{{% notice info "Coming to WLMAC on December 10th, 2021!" %}}
11+
*Premiere, Interactive, Tower-Defense Game Workshop for Programmers of All Levels...*
12+
{{% /notice %}}
1213

14+
![Banner](/img/Game_Dev_Banner.png)

layouts/shortcodes/p5js.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
<!--{{/* {{< p5js >}}p5js code{{< /p5js }}*/}}-->
2+
<script type="text/p5" data-autoplay>{{ .Inner | safeJS }}</script>

p5-js-demo/index.html

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<title>Demo</title>
6+
<script src="https://cdn.jsdelivr.net/npm/p5@1.4.0/lib/p5.js"></script>
7+
<script src="sketch.js"></script>
8+
</head>
9+
<body>
10+
11+
</body>
12+
</html>

p5-js-demo/sketch.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)