updated website
All checks were successful
Build site / build (push) Successful in 2m48s

This commit is contained in:
Shaun Hoffer 2024-10-02 21:42:03 -04:00
parent 4cf064d347
commit cb5509c7a6
11 changed files with 54 additions and 209 deletions

@ -3,23 +3,8 @@ permalink: /404.html
layout: default layout: default
--- ---
<style type="text/css" media="screen">
.container {
margin: 10px auto;
max-width: 600px;
text-align: center;
}
h1 {
margin: 30px 0;
font-size: 4em;
line-height: 1;
letter-spacing: -1px;
}
</style>
<div class="container">
<h1>404</h1> <h1>404</h1>
<p><strong>Page not found :(</strong></p> <p><strong>Page not found</strong></p>
<p>The requested page could not be found.</p> <p>The requested page could not be found.</p>
</div>

@ -11,10 +11,7 @@ GEM
eventmachine (1.2.7) eventmachine (1.2.7)
ffi (1.16.3) ffi (1.16.3)
forwardable-extended (2.6.0) forwardable-extended (2.6.0)
google-protobuf (3.25.3) google-protobuf (3.25.3-x64-mingw-ucrt)
google-protobuf (3.25.3-aarch64-linux)
google-protobuf (3.25.3-arm64-darwin)
google-protobuf (3.25.3-x86_64-darwin)
http_parser.rb (0.8.0) http_parser.rb (0.8.0)
i18n (1.14.5) i18n (1.14.5)
concurrent-ruby (~> 1.0) concurrent-ruby (~> 1.0)
@ -58,7 +55,6 @@ GEM
pathutil (0.16.2) pathutil (0.16.2)
forwardable-extended (~> 2.6) forwardable-extended (~> 2.6)
public_suffix (5.0.5) public_suffix (5.0.5)
rake (13.2.1)
rb-fsevent (0.11.2) rb-fsevent (0.11.2)
rb-inotify (0.11.1) rb-inotify (0.11.1)
ffi (~> 1.0) ffi (~> 1.0)
@ -66,24 +62,21 @@ GEM
strscan (>= 3.0.9) strscan (>= 3.0.9)
rouge (4.2.1) rouge (4.2.1)
safe_yaml (1.0.5) safe_yaml (1.0.5)
sass-embedded (1.69.5) sass-embedded (1.69.5-x64-mingw-ucrt)
google-protobuf (~> 3.23)
rake (>= 13.0.0)
sass-embedded (1.69.5-arm64-darwin)
google-protobuf (~> 3.23)
sass-embedded (1.69.5-x86_64-darwin)
google-protobuf (~> 3.23) google-protobuf (~> 3.23)
strscan (3.1.0) strscan (3.1.0)
terminal-table (3.0.2) terminal-table (3.0.2)
unicode-display_width (>= 1.1.1, < 3) unicode-display_width (>= 1.1.1, < 3)
tzinfo (2.0.6)
concurrent-ruby (~> 1.0)
tzinfo-data (1.2024.2)
tzinfo (>= 1.0.0)
unicode-display_width (2.5.0) unicode-display_width (2.5.0)
wdm (0.1.1)
webrick (1.8.1) webrick (1.8.1)
PLATFORMS PLATFORMS
aarch64-linux x64-mingw-ucrt
arm64-darwin
ruby
x86_64-darwin
DEPENDENCIES DEPENDENCIES
http_parser.rb (~> 0.6.0) http_parser.rb (~> 0.6.0)

@ -18,16 +18,9 @@
# You can create any custom variable you would like, and they will be accessible # You can create any custom variable you would like, and they will be accessible
# in the templates via {{ site.myvariable }}. # in the templates via {{ site.myvariable }}.
title: Shaun's blog title: Shaun's website
email: shoffer@ttnrtsite.me email: shoffer@ttnrtsite.me
description: >- # this means to ignore newlines until "baseurl:" description: >- # this means to ignore newlines until "baseurl:"
My blog site on TTGit My personal website on TTGit
baseurl: "" # the subpath of your site, e.g. /blog
url: "" # the base hostname & protocol for your site, e.g. http://example.com
youtube_username: "@ssp6904"
github_username: ssp6904
# Build settings
theme: minima
plugins: plugins:
- jekyll-feed - jekyll-seo-tag

22
_includes/head.html Normal file

@ -0,0 +1,22 @@
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
{% seo %}
<script>
// Set theme to the user's preferred color scheme
function updateTheme() {
const colorMode = window.matchMedia("(prefers-color-scheme: dark)").matches ?
"dark" :
"light";
document.querySelector("html").setAttribute("data-bs-theme", colorMode);
}
// Set theme on load
updateTheme()
// Update theme when the preferred scheme changes
window.matchMedia('(prefers-color-scheme: dark)').addEventListener('change', updateTheme)
</script>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet">
</head>

10
_layouts/default.html Normal file

@ -0,0 +1,10 @@
<!DOCTYPE html>
<html lang="{{ page.lang | default: site.lang | default: "en" }}">
{%- include head.html -%}
<body>
<div class="container-fluid">
{{ content }}
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.js"></script>
</body>
</html>

@ -1,48 +0,0 @@
---
layout: post
title: "Test post"
date: 2024-06-01 20:41:37 -0400
---
## Header 1
### Header 2
#### Header 3
##### Header 4
###### Header 5
Basic paragrpah! Nothing new..
_Sidded text to the left or right_
**Boldded text for importent information**
~~crossed out for no reason~~
- [x] Checked
- [ ] Not checked
1. A computer
2. A blog
3. A server
- First type out your post
- Then save your changes
- Add, commit and then push all of your changes
|Name |Date |
|-------|--------|
|Me |0/2/2/2 |
|You |1/2/3/4 |
|This |5/6/7/8 |
`Simple code line block`
```bash
echo "hello world!" > testfile.txt
cat testfile.txt
```
```html
<p>Hello world</p>
<div id="ide"></div>
```

@ -1,29 +0,0 @@
---
layout: post
title: "Welcome to Jekyll!"
date: 2024-06-01 20:41:37 -0400
categories: jekyll update
---
Youll find this post in your `_posts` directory. Go ahead and edit it and re-build the site to see your changes. You can rebuild the site in many different ways, but the most common way is to run `jekyll serve`, which launches a web server and auto-regenerates your site when a file is updated.
Jekyll requires blog post files to be named according to the following format:
`YEAR-MONTH-DAY-title.MARKUP`
Where `YEAR` is a four-digit number, `MONTH` and `DAY` are both two-digit numbers, and `MARKUP` is the file extension representing the format used in the file. After that, include the necessary front matter. Take a look at the source for this post to get an idea about how it works.
Jekyll also offers powerful support for code snippets:
{% highlight ruby %}
def print_hi(name)
puts "Hi, #{name}"
end
print_hi('Tom')
#=> prints 'Hi, Tom' to STDOUT.
{% endhighlight %}
Check out the [Jekyll docs][jekyll-docs] for more info on how to get the most out of Jekyll. File all bugs/feature requests at [Jekylls GitHub repo][jekyll-gh]. If you have questions, you can ask them on [Jekyll Talk][jekyll-talk].
[jekyll-docs]: https://jekyllrb.com/docs/home
[jekyll-gh]: https://github.com/jekyll/jekyll
[jekyll-talk]: https://talk.jekyllrb.com/

@ -1,60 +0,0 @@
---
layout: post
title: "Code blocks"
date: 2024-06-11 21:42:00 -0400
---
A few code blocks you might like
```html
<p>Test only</p>
<div id="hi"><span></span></div>
```
```bash
echo "hello world" > testfile.txt
cat testfile.txt
```
```javascript
console.log("Hello world");
console.error("Something happened");
```
```yaml
steps:
testmessage:
image: ubuntu
commands:
- echo "Hello world"
- echo "I run on TTGit"
```
```json
[
{
"id": "0",
"name": "shaun",
"website": "https://www.ttnrtsite.me"
}
]
```
```css
html {
background-color: black;
color: white;
user-select: none;
}
body {
height: 100vh;
margin: 0;
padding: 0;
}
```
```markdown
# Heading 1
Something **NEW**
```

@ -1,7 +0,0 @@
---
layout: post
title: "Random post"
date: 2024-08-14 10:14:00 -0400
---
Hello. I'm here for no reason!

@ -1,18 +0,0 @@
---
layout: page
title: About
permalink: about.html
---
This is the base Jekyll theme. You can find out more info about customizing your Jekyll theme, as well as basic Jekyll usage documentation at [jekyllrb.com](https://jekyllrb.com/)
You can find the source code for Minima at GitHub:
[jekyll][jekyll-organization] /
[minima](https://github.com/jekyll/minima)
You can find the source code for Jekyll at GitHub:
[jekyll][jekyll-organization] /
[jekyll](https://github.com/jekyll/jekyll)
[jekyll-organization]: https://github.com/jekyll

@ -1,6 +1,10 @@
--- ---
# Feel free to add content and custom Front Matter to this file. layout: default
# To modify the layout, see https://jekyllrb.com/docs/themes/#overriding-theme-defaults title: Home
---
# My projects
layout: home - [USMap](https://ssp6904.ttnrtsite.io/usmap/)
--- - [JSEditors](https://ssp6904.ttnrtsite.io/jseditors/)
- [Winsolitaire](https://ssp6904.ttnrtsite.io/winsolitaire/)
- [Radarmap](https://ssp6904.ttnrtsite.io/radarmap/)