Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
2023-07-17 UPDATE
- Loading branch information
1 parent
d820230
commit 5abb42e
Showing
17 changed files
with
94 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,15 @@ | ||
| --- | ||
| layout: post | ||
| title: Site UPDAT 4 | ||
| date: <2023-07-16> | ||
| categories: [Updates, Website] | ||
| author: 1oolm | ||
| comments: true | ||
| --- | ||
| EVEN MORE WORK. I did speedruns yesterday, so this took a bit. | ||
|
|
||
| Today I: | ||
| - Added a searchbar. Aligning it took 2 DAYS TOTAL. | ||
| - Stylised alpha.zero as αlpha.zero because it's funny | ||
| - //<font color="#DDDDDD">THE LINE</font>// now takes a percentage of the screen instead of a set amount of pixels, fixing appearance on mobile etc. | ||
| - Little changes here and there (About/Team organisation, etc.) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,14 +1,21 @@ | ||
| --- | ||
| layout: none | ||
| --- | ||
| [ | ||
| {% for post in site.posts %} | ||
| { | ||
|
|
||
| "title" : "{{ post.title | escape }}", | ||
| "category" : "{{ post.category }}", | ||
| "tags" : "{{ post.tags | join: ', ' }}", | ||
| "url" : "{{ site.baseurl }}{{ post.url }}", | ||
| "date" : "{{ post.date }}" | ||
| "date" : "{{ post.date | date_to_string }}" | ||
| } {% unless forloop.last %},{% endunless %} | ||
| {% endfor %} | ||
| , | ||
| {% for kitty in site.about %} | ||
| { | ||
|
|
||
| "title" : "{{ kitty.title | strip_html | escape }}", | ||
| "url" : "{{ site.baseurl }}{{ kitty.url }}", | ||
| "date" : "[no date]" | ||
| } {% unless forloop.last %},{% endunless %} | ||
| {% endfor %} | ||
| ] |