diff --git a/src/diary/entries/extra/taskbox b/src/diary/entries/extra/taskbox
index 4209648..6e9bb82 100644
--- a/src/diary/entries/extra/taskbox
+++ b/src/diary/entries/extra/taskbox
@@ -1,7 +1,7 @@
player character
-text read from CSV
-branching dialog
-save/load
+text read from CSV
+branching dialog
+save/load
remappable hotkeys
click+drag skills for skillbarskill phases
diff --git a/src/diary/entries/extra/websitebox b/src/diary/entries/extra/websitebox
new file mode 100644
index 0000000..bbc2efd
--- /dev/null
+++ b/src/diary/entries/extra/websitebox
@@ -0,0 +1,37 @@
+draw a home page image
+define a color scheme
+standardize formatting of articles
+proofread all text on website
+prewrite articles
+plan articles
+make a real timestamp for copyright
+draw some navbar skill icons
+draw a navbar BG
+draw backgrounds for homepage sections
+choose fonts
+thumbnails for projects
+'what is blessfrey?' page overhaul
+system section
+characters section
+story section
+extras (wallpaper, assets)
+cat store page
+gamejam page
+pretendOS page
+blessfrey.me page
+make my git look nice
+backup everything on git
+projects page
+diary page
+diary snippet background
+diary snippet link decoration
+diary boxes backgrounds
+contact page
+pitch writeup
+diary nav link decoration
+presskit page
+presskit download up-to-date
+contact page
+about me writeup
+ideabox page
+taskbox page
diff --git a/src/index.py b/src/index.py
index 31d4d7b..b2d2e15 100644
--- a/src/index.py
+++ b/src/index.py
@@ -409,7 +409,7 @@ def ideabox():
@route('/taskbox')
def taskbox():
"""task box page"""
- info = {'css': 'box', 'title': 'blessfrey - task box - everything needed to complete blessfrey', 'words': fill_box('diary/entries/extra/taskbox'), 'limit': 5, 'year': datetime.datetime.now()}
+ info = {'css': 'box', 'title': 'blessfrey - task box - everything needed to complete blessfrey', 'game_words': fill_box('diary/entries/extra/taskbox'), 'web_words': fill_box('diary/entries/extra/websitebox'), 'limit': 5, 'year': datetime.datetime.now()}
return template('taskbox.tpl', info)
## Main ##
diff --git a/src/static/css/box.css b/src/static/css/box.css
index 637b801..1ce3435 100755
--- a/src/static/css/box.css
+++ b/src/static/css/box.css
@@ -22,6 +22,9 @@ mark {
color: hotpink;
}
ul { list-style-position: inside; }
+.strike {
+ text-decoration: line-through;
+}
.grid {
display: grid;
diff --git a/src/static/xml/blessfrey.xml b/src/static/xml/blessfrey.xml
index ce1d842..c06682a 100644
--- a/src/static/xml/blessfrey.xml
+++ b/src/static/xml/blessfrey.xml
@@ -7,9 +7,23 @@
en-uschimchooree@mail.com (chimchooree)
-designing a tutorial with bingo cards
+april 2020: will patrols ever work?
+https://www.blessfrey.me/diary/entries/210501
+thursday, april 1 - April Fool's Day I got gnomed by my group leader, and FlightRising's ...
+Sat, 01 May 2021 05:00:05 GMT
+https://www.blessfrey.me/diary/entries/210501
+
+
+an enemy patrol in godot
+https://www.blessfrey.me/diary/entries/210429
+My patrol routes look like a series of waypoints (Position2Ds) which are the children of a patrol ...
+Thu, 29 Apr 2021 05:00:05 GMT
+https://www.blessfrey.me/diary/entries/210429
+
+
+how to make a plugin for godot engine
https://www.blessfrey.me/diary/entries/210415
-Give your players more freedom during the tutorial by having them play bingo. what's bingo? Bingo ...
+If Godot Engine doesn't have the functionality you need, you can extend it with your own plugins. ... Thu, 15 Apr 2021 05:00:05 GMThttps://www.blessfrey.me/diary/entries/210415
@@ -97,19 +111,5 @@
Thu, 24 Dec 2020 05:00:05 GMThttps://www.blessfrey.me/diary/entries/201224
-
-common tropes from media
-https://www.blessfrey.me/diary/entries/201210
-I like collecting common tropes from games I play. Maybe it can it root out cliches? Or inspire ...
-Thu, 10 Dec 2020 05:00:05 GMT
-https://www.blessfrey.me/diary/entries/201210
-
-
-november 2020: dear diary
-https://www.blessfrey.me/diary/entries/201201
-on topic Between the 8th and 15th, I wrote a Python script for generating Godot skill scenes from ...
-Tue, 01 Dec 2020 05:00:05 GMT
-https://www.blessfrey.me/diary/entries/201201
-
diff --git a/src/views/taskbox.tpl b/src/views/taskbox.tpl
index 3164c6f..e575687 100644
--- a/src/views/taskbox.tpl
+++ b/src/views/taskbox.tpl
@@ -25,14 +25,14 @@ Once my slime is well-integrated with the new refactor, I'll release a quick sna
demo tasks (I'll make the HTML tags work later;;)
- % for i in range(math.ceil(len(words) / limit)):
+ % for i in range(math.ceil(len(game_words) / limit)):
% for j in range(limit):
- % if j + i * limit < len(words):
-
{{words[j + i * limit]}}
+ % if j + i * limit < len(game_words):
+
{{game_words[j + i * limit]}}
% end
- % if i >= ((math.ceil(len(words) / limit)) - 1) and j >= limit - 1:
- % for k in range(limit - (len(words) % limit)):
+ % if i >= ((math.ceil(len(game_words) / limit)) - 1) and j >= limit - 1:
+ % for k in range(limit - (len(game_words) % limit)):
% end
% end
@@ -42,4 +42,23 @@ Once my slime is well-integrated with the new refactor, I'll release a quick sna
% end
+
+
+ % for l in range(math.ceil(len(web_words) / limit)):
+
+ % for m in range(limit):
+ % if m + l * limit < len(web_words):
+
{{web_words[m + l * limit]}}
+ % end
+ % if l >= ((math.ceil(len(web_words) / limit)) - 1) and m >= limit - 1:
+ % for n in range(limit - (len(web_words) % limit)):
+