Skip to content

Commit 3d4abb0

Browse files
committed
Update Config
1 parent e518dcd commit 3d4abb0

File tree

4 files changed

+47
-12
lines changed

4 files changed

+47
-12
lines changed

README.md

Lines changed: 17 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,23 @@
11
[![Pages](https://img.shields.io/github/actions/workflow/status/cssnr/cssnr.github.io/pages.yaml?logo=github&logoColor=white&label=pages)](https://github.com/cssnr/cssnr.github.io/actions/workflows/pages.yaml)
2-
[![GitHub Top Language](https://img.shields.io/github/languages/top/cssnr/update-version-tags-action?logo=htmx&logoColor=white)](https://github.com/cssnr/update-version-tags-action)
2+
[![GitHub Last Commit](https://img.shields.io/github/last-commit/cssnr/cssnr.github.io?logo=github&logoColor=white&label=updated)](https://github.com/cssnr/cssnr.github.io/graphs/commit-activity)
3+
[![GitHub Top Language](https://img.shields.io/github/languages/top/cssnr/cssnr.github.io?logo=htmx&logoColor=white)](https://github.com/cssnr/cssnr.github.io)
34
[![GitHub Org Stars](https://img.shields.io/github/stars/cssnr?style=flat&logo=github&logoColor=white&label=org%20stars)](https://github.com/cssnr/)
5+
[![Discord](https://img.shields.io/discord/899171661457293343?logo=discord&logoColor=white&label=discord&color=7289da)](https://discord.gg/wXy6m2X8wY)
46

57
# CSSNR GitHub Pages
68

7-
* Website: https://cssnr.github.io/
8-
* Github: https://github.com/cssnr/
9-
* Discord: https://discord.gg/wXy6m2X8wY
9+
Website for CSSNR GitHub Organization: https://cssnr.github.io/
1010

11-
More Info Coming Soon...
11+
For more information join us on Discord: https://discord.gg/wXy6m2X8wY
12+
13+
## Development
14+
15+
Install Jekyll: https://jekyllrb.com/docs/installation/
16+
17+
Run: `jekyll serve -s src -o`
18+
19+
This will build the site from the `src` directory, open it in your browser, watch for file changes, automatically rebuild the site and refresh the site in your browser; enjoy =)
20+
21+
For more information see `jekyll help` and `jekyll serve --help` or visit: https://jekyllrb.com/docs/
22+
23+
For production, this site is built with GitHub Actions: [.github/workflows/pages.yaml](.github%2Fworkflows%2Fpages.yaml)

src/_layouts/default.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
<header>
5050
<nav class="navbar navbar-expand-sm bg-body-tertiary mb-2" aria-label="Primary Navigation">
5151
<div class="container-fluid">
52-
<a class="mx-2 hvr-grow" href="{{ "/" | relative_url }}">
52+
<a class="px-2" href="{{ "/" | relative_url }}">
5353
<img src="{{ "/media/logo.png" | relative_url }}" width="30" height="30" alt="logo" class="my-auto"></a>
5454
<button class="navbar-toggler" type="button" data-bs-toggle="collapse"
5555
data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent"
@@ -88,15 +88,15 @@
8888
<footer class="footer mt-auto px-1 flex-shrink-0 bg-body-tertiary">
8989
<div class="container-fluid py-2">
9090
<div class="d-flex flex-column flex-md-row">
91-
<div class="me-md-auto">
91+
<div class="me-md-auto mb-1 mb-md-0">
9292
<a class="text-decoration-none link-body-emphasis" href="{{ site.github_url }}" target="_blank" rel="noopener">
9393
<i class="fab fa-github"></i> {{ site.site_name }}</a>
9494
</div>
9595
<div class="ms-md-auto">
9696
<nav aria-label="Secondary Navigation">
9797
<ol class="list-inline mb-1 d-flex flex-column flex-sm-row">
9898
{% for item in site.menu %}
99-
<li class="list-inline-item">
99+
<li class="list-inline-item mb-1 mb-sm-0">
100100
<a class="text-decoration-none link-body-emphasis {% if page.title == item.name %}fw-bold{% endif %}"
101101
href="{{ item.link | relative_url }}" {% if item.external %}target="_blank"{% endif %}>
102102
{{ item.name }}{% if item.external %} <i class="fa-solid fa-arrow-up-right-from-square fa-sm"></i>{% endif %}</a>
@@ -114,7 +114,7 @@
114114
</footer>
115115

116116
<button type="button" class="btn btn-outline-secondary" id="back-to-top">
117-
<i class="fa-regular fa-square-caret-up hvr-grow-lg"></i>
117+
<i class="fa-regular fa-square-caret-up"></i>
118118
</button> <!-- back-to-top -->
119119

120120
<div aria-live="polite" aria-atomic="true" class="">

src/html/about.html

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ <h1 class="animate__animated animate__zoomIn"><i class="fa-regular fa-address-ca
2020
<img alt="GitHub User Followers" src="https://img.shields.io/github/followers/smashedr?label=User%20Followers" height="24"></a>
2121
</div>
2222

23+
<hr>
24+
2325
<figure>
2426
<blockquote class="blockquote">
2527
Give a man a fish, and you feed him for a day. Teach a man to fish, and you feed him for a lifetime...
@@ -114,6 +116,16 @@ <h2>Development</h2>
114116
</div><!-- flex row-md -->
115117

116118
<p class="lead">More Information Coming Soon...</p>
119+
120+
<hr>
121+
122+
<p>
123+
This site is built with Jekyll and hosted on GitHub Pages.
124+
<br>
125+
View the source code on GitHub:
126+
<a href="https://github.com/cssnr/cssnr.github.io" target="_blank" rel="noopener">
127+
github.com/cssnr/cssnr.github.io</a>
128+
</p>
117129
</div>
118130

119131
{% comment %}<script type="text/javascript" src="{{ "/js/about.js" | relative_url }}"></script>{% endcomment %}

src/js/config.js

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -367,16 +367,27 @@ const otherSoftware = [
367367
{
368368
name: 'Flask Random Image',
369369
url: 'https://github.com/smashedr/flask-random-image',
370-
description: 'Flask App to Redirect to a Random Image.',
370+
description:
371+
'Flask App to Redirect to a Random Image designed for Docker.',
371372
links: {
372-
Example: 'https://flask-image.cssnr.com/',
373+
API: 'https://flask-image.cssnr.com/',
373374
Pages: 'https://github.com/smashedr/random-image/',
374375
GitHub: 'https://github.com/smashedr/flask-random-image',
375376
},
376377
fa: 'faPython',
377378
},
378379
{
379-
name: 'YouTube Embed/Redirect',
380+
name: 'Discord Webhook Relay',
381+
url: 'https://github.com/smashedr/node-discord-hook',
382+
description:
383+
'Discord Webhook Relay built in NodeJS designed for Docker.',
384+
links: {
385+
GitHub: 'https://github.com/smashedr/node-discord-hook',
386+
},
387+
fa: 'faJs',
388+
},
389+
{
390+
name: 'YouTube Embed Redirect',
380391
url: 'https://github.com/smashedr/youtube-embed/',
381392
description:
382393
'GitHub Pages and Userscript to Redirect YouTube to an Embed.',

0 commit comments

Comments
 (0)