Skip to content

Commit

Permalink
Clean Structure and Styles. Start working on minecraft documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
thehamish555 committed Sep 13, 2024
1 parent c728c83 commit 959606d
Show file tree
Hide file tree
Showing 31 changed files with 116 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
Expand All @@ -39,15 +39,15 @@ jobs:
cache-version: 0 # Increment this number if you need to re-download cached gems
- name: Setup Pages
id: pages
uses: actions/configure-pages@v3
uses: actions/configure-pages@v5
- name: Build with Jekyll
# Outputs to the './_site' directory by default
run: bundle exec jekyll build --baseurl "${{ steps.pages.outputs.base_path }}"
env:
JEKYLL_ENV: production
- name: Upload artifact
# Automatically uploads an artifact from the './_site' directory by default
uses: actions/upload-pages-artifact@v1
uses: actions/upload-pages-artifact@v3

# Deployment job
deploy:
Expand All @@ -59,4 +59,4 @@ jobs:
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2
uses: actions/deploy-pages@v4
2 changes: 2 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,6 @@ source 'https://rubygems.org'
gem "jekyll", "~> 4.3.3" # installed by `gem jekyll`
# gem "webrick" # required when using Ruby >= 3 and Jekyll <= 4.2.2

gem 'wdm', '>= 0.1.0' if Gem.win_platform?

gem "just-the-docs"
2 changes: 2 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ GEM
terminal-table (3.0.2)
unicode-display_width (>= 1.1.1, < 3)
unicode-display_width (2.5.0)
wdm (0.1.1)
webrick (1.8.1)

PLATFORMS
Expand All @@ -93,6 +94,7 @@ PLATFORMS
DEPENDENCIES
jekyll (~> 4.3.3)
just-the-docs
wdm (>= 0.1.0)

BUNDLED WITH
2.5.9
23 changes: 20 additions & 3 deletions _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,32 @@ aux_links_new_tab: true
# aux_links:
# Template Repository: https://github.com/YOUR-USERNAME/YOUR-SITE-NAME

color_scheme: light
color_scheme: custom

search_enabled: true
search:
rel_url: false
button: true

mermaid:
version: "9.1.3"
version: "11.2.0"

nav_enabled: true
heading_anchors: true
heading_anchors: true

callouts_level: loud # or loud
callouts:
highlight:
color: yellow
important:
title: Important
color: blue
new:
title: New
color: green
note:
title: Note
color: purple
warning:
title: Warning
color: red
4 changes: 2 additions & 2 deletions _includes/nav_footer_custom.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<script src="https://kit.fontawesome.com/d6c6cba7b0.js" crossorigin="anonymous"></script>
<!-- <script src="https://kit.fontawesome.com/d6c6cba7b0.js" crossorigin="anonymous"></script>
<div style="padding-right: 25px;"">
<button class="btn js-toggle-dark-mode"><i class="fa-solid fa-circle-half-stroke"></i></button>
</div>
Expand All @@ -14,4 +14,4 @@
jtd.setTheme('dark');
}
});
</script>
</script> -->
33 changes: 33 additions & 0 deletions _sass/color_schemes/custom.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
@import "./color_schemes/dark";

$body-background-color: #282c34;
$body-heading-color: #e7e7e7;
$body-text-color: #e7e7e7;
$link-color: #98c379;
$nav-child-link-color: #cccccc;
$sidebar-color: #21252b;
$base-button-color: #302d36;
$btn-primary-color: #264caf;
$code-background-color: #31343f;
$code-linenumber-color: #dee2f7;
$feedback-color: #2c313a;
$table-background-color: #282b31;
$search-background-color: #21252b;
$search-result-preview-color: #abb2bf;
$border-color: #3b4048;

@import "./vendor/OneDarkJekyll/syntax";

$content-width: 100rem;

@font-face {
font-family: 'Futura';
src: url('/assets/fonts/futura medium bt.ttf') format('truetype');
font-style: normal;
font-display: swap;
font-weight: normal;
}

div {
font-family: 'Futura', sans-serif;
}
Binary file added assets/fonts/Futura Bold Italic font.ttf
Binary file not shown.
Binary file added assets/fonts/Futura Bold font.ttf
Binary file not shown.
Binary file added assets/fonts/Futura Book Italic font.ttf
Binary file not shown.
Binary file added assets/fonts/Futura Book font.ttf
Binary file not shown.
Binary file added assets/fonts/Futura Extra Black font.ttf
Binary file not shown.
Binary file added assets/fonts/Futura Heavy Italic font.ttf
Binary file not shown.
Binary file added assets/fonts/Futura Heavy font.ttf
Binary file not shown.
Binary file added assets/fonts/Futura Light Italic font.ttf
Binary file not shown.
Binary file added assets/fonts/Futura Light font.ttf
Binary file not shown.
Binary file added assets/fonts/Futura Medium Italic font.ttf
Binary file not shown.
Binary file added assets/fonts/Futura XBlk BT.ttf
Binary file not shown.
Binary file added assets/fonts/Futura-CondensedLight.otf
Binary file not shown.
Binary file added assets/fonts/futura light bt.ttf
Binary file not shown.
Binary file added assets/fonts/futura medium bt.ttf
Binary file not shown.
Binary file added assets/fonts/futura medium condensed bt.ttf
Binary file not shown.
Binary file added assets/fonts/futura.ttf
Binary file not shown.
Binary file added assets/fonts/tt0205m_.ttf
Binary file not shown.
Binary file added assets/fonts/unicode.futurab.ttf
Binary file not shown.
Binary file added assets/fonts/unicode.futurabb.ttf
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
---
layout: default
title: "Development of Ham Bot"
title: Development of Ham Bot
permalink: /blogs/development-of-ham-bot
parent: Blogs
---

## The Beginning (2021-2022)

Over the last couple of years (Starting Late 2021), I have experimented with Discord Bots. To learn more about how to code these bots I made a simple Bot I called "Ham Bot".
Expand Down Expand Up @@ -741,6 +744,7 @@ My most recent addition to the new Ham Bot was adding the Music feature back. Th
The biggest change introduced in this version was how Music was played, instead of downloading to my computer, it would now directly stream the music from YouTube.

This is the code for the play command

```python
# Required Imports
import discord
Expand Down
7 changes: 7 additions & 0 deletions blogs/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
layout: default
title: Blogs
permalink: /blogs
---

## Blog Posts
7 changes: 7 additions & 0 deletions docs/minecraft/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
layout: default
title: Minecraft Server Guide
permalink: /minecraft
---

## Minecraft Server Guide
8 changes: 8 additions & 0 deletions docs/minecraft/install-mods.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
layout: default
title: Install Mods
permalink: /minecraft/mods
parent: Minecraft Server Guide
---

## WIP
25 changes: 25 additions & 0 deletions docs/minecraft/servers.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
---
layout: default
title: Servers
permalink: /minecraft/servers
parent: Minecraft Server Guide
---

## Servers

| Server Name | IP Address | Version | Platform | Requirements |
| --- | --- | --- | --- | --- |
| ~~Vanilla: Corrupted~~ | ~~lester.serveminecraft.net:25590~~ | ~~1.20.1~~ | ~~Java~~ |~~Simple Voice Chat (Avoid Discord Calls)~~ |
| Better Minecraft | lester.serveminecraft.net:25589 | 1.20.1 | Java | Better MC [FORGE] - BMC4 |
| Vanilla With A TWIST! (Currently Creative) | lester.serveminecraft.net:25588 | 1.20.1 | Java | None |

{: .important}
> Due to a mishandling of world data, the vanilla server has been lost.
{: .warning-title}
> Rules
>
> 1. Don't Hack
> 2. Don't Steal
> 3. Don't Grief
> 4. Don't Ruin Other Players Experience (E.g. Killing them or starting unwanted fights with them)

0 comments on commit 959606d

Please sign in to comment.