Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
2023-07-28
  • Loading branch information
alphazero-official committed Jul 28, 2023
1 parent 12b75d3 commit 1ddf89b
Show file tree
Hide file tree
Showing 6 changed files with 28 additions and 12 deletions.
Binary file modified .vs/alphazero-official.github.io/v16/.suo
Binary file not shown.
Binary file modified .vs/slnx.sqlite
Binary file not shown.
4 changes: 2 additions & 2 deletions _credits/contributors.md
Expand Up @@ -3,9 +3,9 @@ layout: page
title: Contributors
permalink: /contributors/
---
{% assign mas = site.data.contributors["masernerd"] %}
List of contributions made by people past and present.<br>(Might not be exhaustive)
{% assign mas = site.data.contributors["masernerd"] %}List of contributions made by people past and present.<br>(Might not be exhaustive)
(Currently unsorted)
<br><br>
<div id="line-s"><hr /></div>
<br>
- <a href="{{ mas.link }}" title="{{ mas.name }}"><font color="{{ mas.color }}">{{ mas.name }}</font></a>: {{ mas.credit }} <br>
Expand Down
20 changes: 11 additions & 9 deletions _layouts/categories.html
Expand Up @@ -19,15 +19,17 @@ <h1 class="categories-list-heading">{{ page.list_title | default: "Categories" }
<div id="#{{ category_name | slugize }}"></div>
<h2 class="category-head">{{ category_name }} ({{ site.categories[category_name].size }})</h2>
<a name="{{ category_name | slugize }}"></a>
{% for post in site.categories[category_name] %}
{%- unless post.unlisted -%}
<article class="archive-item">
<h4>
<a href="{{ site.baseurl }}{{ post.url }}">{{post.title}}</a>
</h4>
</article>
{%- endunless -%}
{% endfor %}
<ul>
{% for post in site.categories[category_name] %}
{%- unless post.unlisted -%}
<article class="archive-item">
<h4>
<li><a href="{{ site.baseurl }}{{ post.url }}">{{post.title}}</a> || <font color="#AAAAAA">{{ post.date | date_to_string }}</font></li>{%- if forloop.last -%}<br>{%- endif -%}
</h4>
</article>
{%- endunless -%}
{% endfor %}
</ul>
</div>
<div id="line-s"><hr /></div>
<br>
Expand Down
14 changes: 14 additions & 0 deletions _posts/2023-07-28-update6.md
@@ -0,0 +1,14 @@
---
layout: post
title: Site Update 6
date: <2023-07-28>
categories: [Updates, Website]
author: 1oolm
comments: true
---

Oops, it's been a while! I've had some bad days and whatever, and have mostly been focusing on other things, such as game work. Hope to get stuff out, we've been having fun ;]

Today I:
- Updated the site's font from <font face='Lucida Console'>Lucida Console</font> to <font face='Roboto Mono'>Roboto Mono</font>. I think that makes more sense, it's the main font we use for alpha.zero, y'know.
- Added post dates to the /categories/ search page
2 changes: 1 addition & 1 deletion _sass/minima.scss
Expand Up @@ -2,7 +2,7 @@

// Define defaults for each variable.

$base-font-family: -apple-system, BlinkMacSystemFont, "Lucida Console", Lucida Console, Monaco, monospace, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol" !default;
$base-font-family: -apple-system, BlinkMacSystemFont, "Roboto Mono", Roboto Mono, Roboto Mono, monospace, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol" !default;
$base-font-size: 16px !default;
$base-font-weight: 400 !default;
$small-font-size: $base-font-size * 0.875 !default;
Expand Down

0 comments on commit 1ddf89b

Please sign in to comment.