trillOS 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/LICENSE.txt +21 -0
- data/README.md +50 -0
- data/_data/navigation.yml +6 -0
- data/_includes/footer.html +43 -0
- data/_includes/head.html +9 -0
- data/_includes/header.html +9 -0
- data/_includes/menu_item.html +19 -0
- data/_includes/navigation.html +12 -0
- data/_includes/post_list.html +32 -0
- data/_includes/postlist.html +14 -0
- data/_layouts/default.html +52 -0
- data/_layouts/images.html +13 -0
- data/_layouts/page.html +20 -0
- data/_layouts/post.html +146 -0
- data/assets/images/android-chrome-192x192.png +0 -0
- data/assets/images/android-chrome-512x512.png +0 -0
- data/assets/images/apple-touch-icon.png +0 -0
- data/assets/images/avocado-kawaii.png +0 -0
- data/assets/images/background.jpg +0 -0
- data/assets/images/bkg.png +0 -0
- data/assets/images/favicon-16x16.png +0 -0
- data/assets/images/favicon-32x32.png +0 -0
- data/assets/images/favicon.ico +0 -0
- data/assets/images/logo.png +0 -0
- data/assets/images/logo.svg +1 -0
- data/assets/images/withgoggy.png +0 -0
- data/assets/js/tmedate.js +33 -0
- data/assets/scss/album.css +18 -0
- data/assets/scss/cursor.css +56 -0
- data/assets/scss/footer.css +105 -0
- data/assets/scss/links.css +10 -0
- data/assets/scss/logo.css +16 -0
- data/assets/scss/menu.css +84 -0
- data/assets/scss/postlist.css +24 -0
- data/assets/scss/style.css +157 -0
- metadata +92 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 14fa7bcaa8d4ff71a1b17d3e4bad8b71b5b24442b7dea11377972a3a1f6cd3ff
|
|
4
|
+
data.tar.gz: 66449422baabce16c101b0c3e6d98b9e71860532cd8dcc187bae8f33c19046d9
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: 15d45ca18d185d027089887a456ed34a3d10b133e86efb9ad9be633bdf368da56bb2425f4bf77f8165be1f2055fb6a8886dbc99050c7f3a14e7a2693cc2d7f06
|
|
7
|
+
data.tar.gz: 2fefa86fea391f043a375e13654b0dc77f20419a3390bc4d8b11f012a5d2df0e8b2c778dff373b754b8894d2565234f3289cda35119b007fd63161ccc2f9f4b8
|
data/LICENSE.txt
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
The MIT License (MIT)
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025 OGtrilliams
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
|
13
|
+
all copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
# trillOS
|
|
2
|
+
|
|
3
|
+
Welcome to your new Jekyll theme! In this directory, you'll find the files you need to be able to package up your theme into a gem. Put your layouts in `_layouts`, your includes in `_includes`, your sass files in `_sass` and any other assets in `assets`.
|
|
4
|
+
|
|
5
|
+
To experiment with this code, add some sample content and run `bundle exec jekyll serve` – this directory is setup just like a Jekyll site!
|
|
6
|
+
|
|
7
|
+
TODO: Delete this and the text above, and describe your gem
|
|
8
|
+
|
|
9
|
+
## Installation
|
|
10
|
+
|
|
11
|
+
Add this line to your Jekyll site's `Gemfile`:
|
|
12
|
+
|
|
13
|
+
```ruby
|
|
14
|
+
gem "trillOS"
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
And add this line to your Jekyll site's `_config.yml`:
|
|
18
|
+
|
|
19
|
+
```yaml
|
|
20
|
+
theme: trillOS
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
And then execute:
|
|
24
|
+
|
|
25
|
+
$ bundle
|
|
26
|
+
|
|
27
|
+
Or install it yourself as:
|
|
28
|
+
|
|
29
|
+
$ gem install trillOS
|
|
30
|
+
|
|
31
|
+
## Usage
|
|
32
|
+
|
|
33
|
+
TODO: Write usage instructions here. Describe your available layouts, includes, sass and/or assets.
|
|
34
|
+
|
|
35
|
+
## Contributing
|
|
36
|
+
|
|
37
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/trillOS. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](https://www.contributor-covenant.org/) code of conduct.
|
|
38
|
+
|
|
39
|
+
## Development
|
|
40
|
+
|
|
41
|
+
To set up your environment to develop this theme, run `bundle install`.
|
|
42
|
+
|
|
43
|
+
Your theme is setup just like a normal Jekyll site! To test your theme, run `bundle exec jekyll serve` and open your browser at `http://localhost:4000`. This starts a Jekyll server using your theme. Add pages, documents, data, etc. like normal to test your theme's contents. As you make modifications to your theme and to your content, your site will regenerate and you should see the changes in the browser after a refresh, just like normal.
|
|
44
|
+
|
|
45
|
+
When your theme is released, only the files in `_layouts`, `_includes`, `_sass` and `assets` tracked with Git will be bundled.
|
|
46
|
+
To add a custom directory to your theme-gem, please edit the regexp in `trillOS.gemspec` accordingly.
|
|
47
|
+
|
|
48
|
+
## License
|
|
49
|
+
|
|
50
|
+
The theme is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
<footer>
|
|
2
|
+
<div class="wrapper">
|
|
3
|
+
<div name="toolbar" class="toolbar-bottom">
|
|
4
|
+
<div class="dropdown">
|
|
5
|
+
<button><i class="fa-solid fa-gear"></i>Menu</button>
|
|
6
|
+
|
|
7
|
+
<div id="menu" class="content">
|
|
8
|
+
<!-- Etsy -->
|
|
9
|
+
<a href="https://etsy.com/OGtrilliams" target="_blank" rel="noopener noreferrer"><i class="fa-brands fa-etsy"></i>Etsy</a>
|
|
10
|
+
<!-- Bluesky -->
|
|
11
|
+
<a href="https://bsky.app/profile/stilltrill.bsky.social" target="_blank" rel="noopener noreferrer"><i class="fa-brands fa-bluesky"></i>Bluesky</a>
|
|
12
|
+
|
|
13
|
+
<!-- YouTube -->
|
|
14
|
+
<a href="https://youtube.com/OGtrilliams" target="_blank" rel="noopener noreferrer"><i class="fa-brands fa-youtube"></i>YouTube</a>
|
|
15
|
+
|
|
16
|
+
<!-- Linkedin -->
|
|
17
|
+
<a href="https://linkedin.com/in/trilliams" target="_blank" rel="noopener noreferrer"><i class="fa-brands fa-linkedin"></i>LinkedIN</a>
|
|
18
|
+
<!-- Github -->
|
|
19
|
+
<a href="https://github.com/OGtrilliams" target="_blank" rel="noopener noreferrer"><i class="fa-brands fa-github"></i>Github</a>
|
|
20
|
+
<a href="https://twitch.com/OGtrilliams" target="_blank" rel="noopener noreferrer"><i class="fa-brands fa-twitch"></i>Twitch</a>
|
|
21
|
+
<a href="https://dev.to/OGtrilliams" target="_blank" rel="noopener noreferrer"><i class="fa-brands fa-dev"></i>dev.to</a></div>
|
|
22
|
+
</div>
|
|
23
|
+
<div type="contact" class="toolbar-right"><div class="bugreport"><i class="fa-solid fa-bugs"></i>Report Bugs
|
|
24
|
+
<a href="/feed.xml"><i class="fas fa-wifi"></i></a>
|
|
25
|
+
<a href="mailto:hello@trilliams.sh"><i class="fa-solid fa-envelope" subject="hey there" name="email"></i></a></div>
|
|
26
|
+
|
|
27
|
+
<div class="digital-clock">
|
|
28
|
+
<span id="hours">00</span>
|
|
29
|
+
<span id="colon">:</span>
|
|
30
|
+
<span id="minutes">00</span>
|
|
31
|
+
<span id="colon">:</span>
|
|
32
|
+
<span id="seconds">00</span>
|
|
33
|
+
</div>
|
|
34
|
+
|
|
35
|
+
<div class="calendar-right">
|
|
36
|
+
<span id="current-day">Sunday,</span> <span id="current-date">01</span> <span id="current-month">January</span> <span id="current-year">2025</span>
|
|
37
|
+
</div>
|
|
38
|
+
</div>
|
|
39
|
+
</div>
|
|
40
|
+
|
|
41
|
+
</div>
|
|
42
|
+
<script src="/assets/js/tmedate.js"></script>
|
|
43
|
+
</footer>
|
data/_includes/head.html
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
<head>
|
|
2
|
+
<meta charset="utf-8" />
|
|
3
|
+
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
4
|
+
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
5
|
+
<link rel="stylesheet" type="text/css" href="/assets/scss/style.css">
|
|
6
|
+
|
|
7
|
+
<link rel="shortcut icon" type="image/x-icon" href="/{{ site.favicon }}" />
|
|
8
|
+
|
|
9
|
+
</head>
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
<header>
|
|
2
|
+
<div class="folder-2"><label name="title" class="title">{{ page.title }}</label>
|
|
3
|
+
<div class="other-buttons">
|
|
4
|
+
<button name="mini"><i class="fa-solid fa-window-minimize"></i></button>
|
|
5
|
+
<button name="max"><i class="fa-regular fa-window-maximize"></i></button>
|
|
6
|
+
<button name="close"><i class="fa-solid fa-xmark"></i></button></div>
|
|
7
|
+
</div>
|
|
8
|
+
|
|
9
|
+
</header>
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
<ul>
|
|
2
|
+
{% for item in include.collection %}
|
|
3
|
+
<li>
|
|
4
|
+
{% if item.url != false %}
|
|
5
|
+
<a href="{{ item.url }}">{{ item.title }}</a>
|
|
6
|
+
{% else %}
|
|
7
|
+
{{ item.title }}
|
|
8
|
+
{% endif %}
|
|
9
|
+
</li>
|
|
10
|
+
|
|
11
|
+
{% if item.post_list == true %}
|
|
12
|
+
{% include post_list.html %}
|
|
13
|
+
{% endif %}
|
|
14
|
+
|
|
15
|
+
{% if item.entries != blank %}
|
|
16
|
+
{% include menu_item.html collection=item.entries %}
|
|
17
|
+
{% endif %}
|
|
18
|
+
{% endfor %}
|
|
19
|
+
</ul>
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
|
|
2
|
+
<nav>
|
|
3
|
+
{% for item in site.data.navigation %}
|
|
4
|
+
<div class="btn-group"> <button type="button" class="button-head"><a href="{{ item.link }}" {% if page.url == item.link %}class="current"{% endif %}>
|
|
5
|
+
guest@trilliams: {{ item.name }} -- - ssh
|
|
6
|
+
</a></button></div>
|
|
7
|
+
{% endfor %} <button type="button" class="divplus"><a onclick="window.history.back()">+</a></button>
|
|
8
|
+
{% if page.show_sidebar %}
|
|
9
|
+
|
|
10
|
+
{% endif %}
|
|
11
|
+
</nav>
|
|
12
|
+
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
<div class="wrapper index-columns">
|
|
2
|
+
|
|
3
|
+
<div class="index-items">
|
|
4
|
+
|
|
5
|
+
{% for item in site.data.navigation %}
|
|
6
|
+
<button>
|
|
7
|
+
<div class="item-link" name="item-link">
|
|
8
|
+
<a href="{{ item.link }}" {% if page.url == item.link %}class="current"{% endif %}><i class="fa-regular fa-file-code xl"></i></a>
|
|
9
|
+
</div>
|
|
10
|
+
<div class="index-txt">{{ item.name }}</div>
|
|
11
|
+
</button>
|
|
12
|
+
|
|
13
|
+
{% endfor %}
|
|
14
|
+
</div>
|
|
15
|
+
|
|
16
|
+
<div class="index-posts">
|
|
17
|
+
|
|
18
|
+
{% if site.posts.size > 0 %}
|
|
19
|
+
{% for post in site.posts %}
|
|
20
|
+
<button>
|
|
21
|
+
<div class="post-link" name="post-link">
|
|
22
|
+
<a href="{{ post.url }}"><i class="fa-regular fa-file-lines xl"></i></a>
|
|
23
|
+
</div>
|
|
24
|
+
<div class="index-title">{{ post.title | downcase }}.txt</div>
|
|
25
|
+
|
|
26
|
+
</button>
|
|
27
|
+
{% endfor %}
|
|
28
|
+
{% endif %}
|
|
29
|
+
|
|
30
|
+
</div>
|
|
31
|
+
|
|
32
|
+
</div>
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<ul>
|
|
2
|
+
{% for item in site.data.navigation %}
|
|
3
|
+
<li> <i class="fa-regular fa-file"></i><a href="{{ item.link }}" {% if page.url == item.link %}class="current"{% endif %}>{{ item.name }}</a></li>
|
|
4
|
+
|
|
5
|
+
{% endfor %}
|
|
6
|
+
</ul>
|
|
7
|
+
|
|
8
|
+
<ul>
|
|
9
|
+
{% for post in site.posts %}
|
|
10
|
+
<li><i class="fa-solid fa-file-lines"></i>
|
|
11
|
+
<a href="{{ post.url }}">{{ post.title }}</a>
|
|
12
|
+
</li>
|
|
13
|
+
{% endfor %}
|
|
14
|
+
</ul>
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
{% include head.html %}
|
|
5
|
+
</head>
|
|
6
|
+
|
|
7
|
+
<body>
|
|
8
|
+
|
|
9
|
+
<div class="container">
|
|
10
|
+
<div class="toolbar-top"><label name="title" class="title">{{ page.title }}</label>
|
|
11
|
+
</div>
|
|
12
|
+
<div class="other-buttons">
|
|
13
|
+
<button name="mini"><i class="fa-solid fa-window-minimize"></i></button>
|
|
14
|
+
<button name="max"><i class="fa-regular fa-window-maximize"></i></button>
|
|
15
|
+
<button name="close"><i class="fa-solid fa-xmark"></i></button>
|
|
16
|
+
</div>
|
|
17
|
+
|
|
18
|
+
<div class="navigation">
|
|
19
|
+
<div class="navi buttons">
|
|
20
|
+
<button name="file">File</button>
|
|
21
|
+
<button name="edit">Edit</button>
|
|
22
|
+
<button name="view">View</button>
|
|
23
|
+
<button name="go">Go</button>
|
|
24
|
+
<button name="bookmarks">Bookmarks</button>
|
|
25
|
+
<button name="help">Help</button></div>
|
|
26
|
+
</div>
|
|
27
|
+
<div class="toolbar">
|
|
28
|
+
<a onclick="window.history.back()"><i class="fa-solid fa-angles-left"></i></a>
|
|
29
|
+
<i class="fa-solid fa-angles-right"></i>
|
|
30
|
+
<i class="fa-solid fa-arrow-up-long"></i>
|
|
31
|
+
<i class="fa-solid fa-arrow-rotate-right"></i>
|
|
32
|
+
<i class="fa-solid fa-grip-lines-vertical"></i>
|
|
33
|
+
<i class="fa-solid fa-house"></i> <label>Location:</label> <textarea readonly cols="30" rows="1" placeholder="/home/trilliams" id="text" name="dud"></textarea><i class="fa-solid fa-magnifying-glass"></i>
|
|
34
|
+
</div>
|
|
35
|
+
|
|
36
|
+
<div class="side-menu scrollable">
|
|
37
|
+
<div class="mycompy"><i class="fa-solid fa-sort-down"></i>My Computer</div>
|
|
38
|
+
<div class="sidebar" name="home"> <a href="/"><i class="fa-solid fa-folder-open"></i>Desktop</div></a>
|
|
39
|
+
<div class="sidebar"><i class="fa-solid fa-caret-right"></i><i class="fa-solid fa-folder-closed"></i>Documents</div>
|
|
40
|
+
<div class="sidebar"><i class="fa-solid fa-caret-right"></i><i class="fa-solid fa-folder-closed"></i>Images</div>
|
|
41
|
+
<div class="sidebar"><i class="fa-solid fa-caret-right"></i><i class="fa-solid fa-folder-closed"></i>Applications</div>
|
|
42
|
+
<div class="sidebar"><i class="fa-solid fa-caret-right"></i><i class="fa-solid fa-folder-closed"></i>trilliams</div>
|
|
43
|
+
</div>
|
|
44
|
+
<div class="post-list scrollable">
|
|
45
|
+
{{ content }}
|
|
46
|
+
</div>
|
|
47
|
+
<div class="bottom-toolbar"></div>
|
|
48
|
+
</div>
|
|
49
|
+
|
|
50
|
+
{% include footer.html %}
|
|
51
|
+
</body>
|
|
52
|
+
</html>
|
data/_layouts/page.html
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
---
|
|
2
|
+
layout: page
|
|
3
|
+
---
|
|
4
|
+
<!DOCTYPE html>
|
|
5
|
+
<html lang="en">
|
|
6
|
+
<head>
|
|
7
|
+
<meta charset="UTF-8">
|
|
8
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
9
|
+
<title>{{ page.title }}</title>
|
|
10
|
+
<style>
|
|
11
|
+
body {
|
|
12
|
+
background: 000;
|
|
13
|
+
display: grid;
|
|
14
|
+
}
|
|
15
|
+
</style>
|
|
16
|
+
</head>
|
|
17
|
+
<body>
|
|
18
|
+
<div class="content">{{ content }}</div>
|
|
19
|
+
</body>
|
|
20
|
+
</html>
|
data/_layouts/post.html
ADDED
|
@@ -0,0 +1,146 @@
|
|
|
1
|
+
---
|
|
2
|
+
layout: page
|
|
3
|
+
---
|
|
4
|
+
<!DOCTYPE html>
|
|
5
|
+
<html lang="en">
|
|
6
|
+
<head>
|
|
7
|
+
{% include head.html %}
|
|
8
|
+
<meta charset="UTF-8">
|
|
9
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
10
|
+
<title> {{ page.title }} </title>
|
|
11
|
+
<style>
|
|
12
|
+
*,
|
|
13
|
+
*:before,
|
|
14
|
+
*:after {
|
|
15
|
+
margin: 0;
|
|
16
|
+
padding: 0;
|
|
17
|
+
}
|
|
18
|
+
body {
|
|
19
|
+
background: #121212; /* Dark solid background for the overall page */
|
|
20
|
+
font-family: "Fira Code", Monaco, Consolas, "Ubuntu Mono", monospace;
|
|
21
|
+
color: #121212;
|
|
22
|
+
line-height: 1.54rem;
|
|
23
|
+
height: 100vh;
|
|
24
|
+
box-sizing: border-box;
|
|
25
|
+
}
|
|
26
|
+
select {
|
|
27
|
+
width: 125px;
|
|
28
|
+
}
|
|
29
|
+
.container {
|
|
30
|
+
display: grid;
|
|
31
|
+
grid-template-rows: 50px 50px 500px 40px;
|
|
32
|
+
grid-template-columns: 1fr 3fr;
|
|
33
|
+
width: 85%;
|
|
34
|
+
margin: 0 auto;
|
|
35
|
+
}
|
|
36
|
+
.gedit {
|
|
37
|
+
border-radius: 5px;
|
|
38
|
+
}
|
|
39
|
+
.gedit button {
|
|
40
|
+
width: 40px;
|
|
41
|
+
}
|
|
42
|
+
.gedit-toolbar, .gedit-browser, .gedit-subnav, .gedit-bottom {
|
|
43
|
+
background: lightgrey;
|
|
44
|
+
}
|
|
45
|
+
.gedit-content {
|
|
46
|
+
background: whitesmoke;
|
|
47
|
+
}
|
|
48
|
+
.gedit-browser-subnav {
|
|
49
|
+
background: lightgray;
|
|
50
|
+
}
|
|
51
|
+
.gedit-sidebar {
|
|
52
|
+
background: whitesmoke;
|
|
53
|
+
grid-area: 3 /1 / 5 /1;
|
|
54
|
+
overflow-y: auto;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
.gedit-subnav {
|
|
58
|
+
display: grid;
|
|
59
|
+
grid-template-columns: 1fr 1fr;
|
|
60
|
+
padding: 0 10px;
|
|
61
|
+
border: 1px solid rgb(172, 172, 172);
|
|
62
|
+
|
|
63
|
+
}
|
|
64
|
+
.gedit-header {
|
|
65
|
+
grid-column: 1;
|
|
66
|
+
grid-row: 1;
|
|
67
|
+
border-left: 0;
|
|
68
|
+
font-size: 18px;
|
|
69
|
+
font-weight: bold;
|
|
70
|
+
box-shadow: 2px 2px 3px 0px grey;
|
|
71
|
+
|
|
72
|
+
}
|
|
73
|
+
.gedit-title {
|
|
74
|
+
grid-column: 2;
|
|
75
|
+
grid-row: 1;
|
|
76
|
+
border: 1px solid grey;
|
|
77
|
+
font-size: 18px;
|
|
78
|
+
font-weight: bold;
|
|
79
|
+
}
|
|
80
|
+
/*grid-area: row-start col-start row-end col-end;*/
|
|
81
|
+
.bt-bottom, .gedit-browser {
|
|
82
|
+
display: grid;
|
|
83
|
+
grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
|
|
84
|
+
grid-template-rows: 1fr;
|
|
85
|
+
}
|
|
86
|
+
.fa-plus{
|
|
87
|
+
display: flex;
|
|
88
|
+
float: right;
|
|
89
|
+
}
|
|
90
|
+
.other-buttons{
|
|
91
|
+
grid-column: 6;
|
|
92
|
+
}
|
|
93
|
+
.mb-right{
|
|
94
|
+
grid-column: 5;
|
|
95
|
+
}
|
|
96
|
+
.gedit-decotext{
|
|
97
|
+
font-weight: bold;
|
|
98
|
+
font-size: 22px;
|
|
99
|
+
}
|
|
100
|
+
.gedit-content {
|
|
101
|
+
padding: 10px;
|
|
102
|
+
overflow-y: auto;
|
|
103
|
+
}
|
|
104
|
+
</style>
|
|
105
|
+
</head>
|
|
106
|
+
<body>
|
|
107
|
+
|
|
108
|
+
<div class="container">
|
|
109
|
+
<div class="gedit gedit-toolbar"> <span class="gedit-decotext">File Browser</span><i class="fa-solid fa-caret-down xl"></i></div>
|
|
110
|
+
<div class="gedit gedit-browser"> <div class="gedit-decotext">gedit-factory.c</div>
|
|
111
|
+
|
|
112
|
+
<div class="other-buttons">
|
|
113
|
+
<button name="mini"><i class="fa-solid fa-window-minimize"></i></button>
|
|
114
|
+
<button name="max"><i class="fa-regular fa-window-maximize"></i></button>
|
|
115
|
+
<button name="close"><i class="fa-solid fa-xmark"></i></button>
|
|
116
|
+
</div>
|
|
117
|
+
</div>
|
|
118
|
+
<div class="gedit gedit-browser-subnav">
|
|
119
|
+
|
|
120
|
+
<button><i class="fa-solid fa-chevron-left xl"></i></button>
|
|
121
|
+
<button><i class="fa-solid fa-chevron-right xl"></i></button>
|
|
122
|
+
<button><i class="fa-solid fa-chevron-up xl"></i></button>
|
|
123
|
+
<select name="gedit" id="gedit-fake">
|
|
124
|
+
<option value="gedit">gedit</option>
|
|
125
|
+
</select>
|
|
126
|
+
</div>
|
|
127
|
+
<div class=" gedit-subnav">
|
|
128
|
+
<div class="gedit-header">{{ page.title }}<i class="fa-solid fa-plus"></i></div>
|
|
129
|
+
<div class="gedit-title">gedit.c <i class="fa-solid fa-plus"></i></div>
|
|
130
|
+
</div>
|
|
131
|
+
<div class="gedit gedit-sidebar"> {% include postlist.html %} </div>
|
|
132
|
+
<div class="gedit-content">{{ content }}</div>
|
|
133
|
+
<div class=" gedit gedit-bottom">
|
|
134
|
+
<div class="bt-bottom">
|
|
135
|
+
<div class="blog-type pad">TXT<i class="fa-solid fa-angle-down xl"></i></div>
|
|
136
|
+
<div class="width pad">Width: <i class="fa-solid fa-angle-down xl"></i></div>
|
|
137
|
+
<div class="line pad">Ln 1, Col 1</div>
|
|
138
|
+
<div class="down pad"><i class="fa-solid fa-angle-down"></i></div>
|
|
139
|
+
<div class="state pad">INS</div>
|
|
140
|
+
</div>
|
|
141
|
+
</div>
|
|
142
|
+
|
|
143
|
+
</div>
|
|
144
|
+
|
|
145
|
+
</body>
|
|
146
|
+
</html>
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:svgjs="http://svgjs.dev/svgjs" width="100%" height="100%" viewBox="0 0 1000 600"><rect width="1000" height="600" x="0" y="0" fill="#ffffff"/><g><rect width="333.3333333333333" height="333.3333333333333" y="324.2004725711606" fill="#ffc8dd" transform="matrix(0.41393709490134467,0,0,0.41393709490134456,0,96.8118760851811)" x="301.9782409667968"/><path d="M427.81722185370774 565.8671554196206L435.9946992457814 519.4584789792024L407.6122868375256 519.4584789792024L407.6122868375256 505.2821951790746L438.56135273380454 505.2821951790746L443.51559086184915 476.48195545881504L415.3420921095953 476.48195545881504L415.3420921095953 462.30567165868723L446.0822443498723 462.30567165868723L454.259721741946 415.8671504102687L469.92824594208724 415.8671504102687L443.51559086184915 565.8671554196206L427.81722185370774 565.8671554196206ZM467.3615924540641 565.8671554196206L493.77424753430216 415.8671504102687L509.47261654244363 415.8671504102687L501.29513915036995 462.30567165868723L529.6775515586257 462.30567165868723L529.6775515586257 476.48195545881504L498.7284856623468 476.48195545881504L493.77424753430216 505.2821951790746L521.9477462865561 505.2821951790746L521.9477462865561 519.4584789792024L491.20759404627904 519.4584789792024L483.0301166542053 565.8671554196206L467.3615924540641 565.8671554196206Z " fill="#ffffff" transform="matrix(0.41393709490134467,0,0,0.41393709490134456,0,96.8118760851811)"/><path d="M814.7523717207944 563.5096938440503L775.0868024302221 563.5096938440503Q763.4365833918715 563.5096938440503 758.0089519340047 556.985571182574Q752.5813204761379 550.4888608011879 752.5813204761379 540.2092557673492L752.5813204761379 540.2092557673492L752.5813204761379 475.07767827294714L718.644917724425 475.07767827294714L718.644917724425 461.6730733088215L743.8916276875328 461.6730733088215Q749.0451363444973 461.6730733088215 751.1010573512651 459.5897400219635Q753.1843906381231 457.5338190151957 753.1843906381231 452.38031035823127L753.1843906381231 452.38031035823127L753.1843906381231 425.7355741105213L768.3707938081142 425.7355741105213L768.3707938081142 461.6730733088215L814.7523717207944 461.6730733088215L814.7523717207944 475.07767827294714L768.3707938081142 475.07767827294714L768.3707938081142 550.0776765998344L814.7523717207944 550.0776765998344L814.7523717207944 563.5096938440503ZM844.5495201788815 563.5096938440503L844.5495201788815 550.0776765998344L874.3740809170589 550.0776765998344L874.3740809170589 475.07767827294714L844.5495201788815 475.07767827294714L844.5495201788815 461.6730733088215L890.1635542490351 461.6730733088215L890.1635542490351 487.33096747328284L891.1503963322835 487.33096747328284Q894.3028085426608 475.296976513669 903.0747381715365 468.4713187712001Q911.8740800805025 461.6730733088215 925.4705710052598 461.6730733088215L925.4705710052598 461.6730733088215L939.6975443720926 461.6730733088215L939.6975443720926 477.4625466407977L920.5363605890171 477.4625466407977Q906.9398696642598 477.4625466407977 898.5517119566475 485.3572833067858Q890.1635542490351 493.25201997277395 890.1635542490351 506.08096705500463L890.1635542490351 506.08096705500463L890.1635542490351 550.0776765998344L929.6372375789757 550.0776765998344L929.6372375789757 563.5096938440503L844.5495201788815 563.5096938440503ZM1013.2995164143776 439.1675913547373L1013.2995164143776 439.1675913547373Q1006.3916218316381 439.1675913547373 1003.6503938226144 436.31671422535265Q1000.8817535335005 433.4384248158778 1000.8817535335005 429.1072845616204L1000.8817535335005 429.1072845616204L1000.8817535335005 425.95487235124324Q1000.8817535335005 421.59631981689563 1003.6503938226144 418.745442687511Q1006.3916218316381 415.8671532780362 1013.2995164143776 415.8671532780362L1013.2995164143776 415.8671532780362Q1020.2074109971173 415.8671532780362 1022.9760512862312 418.745442687511Q1025.7446915753449 421.59631981689563 1025.7446915753449 425.95487235124324L1025.7446915753449 425.95487235124324L1025.7446915753449 429.1072845616204Q1025.7446915753449 433.4384248158778 1022.9760512862312 436.31671422535265Q1020.2074109971173 439.1675913547373 1013.2995164143776 439.1675913547373ZM968.6997367075628 563.5096938440503L968.6997367075628 550.0776765998344L1005.4047797483896 550.0776765998344L1005.4047797483896 475.07767827294714L968.6997367075628 475.07767827294714L968.6997367075628 461.6730733088215L1021.1942530803659 461.6730733088215L1021.1942530803659 550.0776765998344L1055.541840033432 550.0776765998344L1055.541840033432 563.5096938440503L968.6997367075628 563.5096938440503ZM1081.9946903205105 563.5096938440503L1081.9946903205105 550.0776765998344L1117.521005317457 550.0776765998344L1117.521005317457 430.8890827674858L1081.9946903205105 430.8890827674858L1081.9946903205105 417.4570655232699L1133.3104786494332 417.4570655232699L1133.3104786494332 550.0776765998344L1168.8367936463796 550.0776765998344L1168.8367936463796 563.5096938440503L1081.9946903205105 563.5096938440503ZM1200.4157403103322 563.5096938440503L1200.4157403103322 550.0776765998344L1235.9420553072791 550.0776765998344L1235.9420553072791 430.8890827674858L1200.4157403103322 430.8890827674858L1200.4157403103322 417.4570655232699L1251.731528639255 417.4570655232699L1251.731528639255 550.0776765998344L1287.2578436362019 550.0776765998344L1287.2578436362019 563.5096938440503L1200.4157403103322 563.5096938440503ZM1368.5626663838434 439.1675913547373L1368.5626663838434 439.1675913547373Q1361.6547718011038 439.1675913547373 1358.91354379208 436.31671422535265Q1356.1449035029664 433.4384248158778 1356.1449035029664 429.1072845616204L1356.1449035029664 429.1072845616204L1356.1449035029664 425.95487235124324Q1356.1449035029664 421.59631981689563 1358.91354379208 418.745442687511Q1361.6547718011038 415.8671532780362 1368.5626663838434 415.8671532780362L1368.5626663838434 415.8671532780362Q1375.470560966583 415.8671532780362 1378.239201255697 418.745442687511Q1381.0078415448106 421.59631981689563 1381.0078415448106 425.95487235124324L1381.0078415448106 425.95487235124324L1381.0078415448106 429.1072845616204Q1381.0078415448106 433.4384248158778 1378.239201255697 436.31671422535265Q1375.470560966583 439.1675913547373 1368.5626663838434 439.1675913547373ZM1323.9628866770286 563.5096938440503L1323.9628866770286 550.0776765998344L1360.6679297178553 550.0776765998344L1360.6679297178553 475.07767827294714L1323.9628866770286 475.07767827294714L1323.9628866770286 461.6730733088215L1376.4574030498316 461.6730733088215L1376.4574030498316 550.0776765998344L1410.8049900028977 550.0776765998344L1410.8049900028977 563.5096938440503L1323.9628866770286 563.5096938440503ZM1530.0209961153369 563.5096938440503L1519.165733199603 563.5096938440503Q1509.900382529103 563.5096938440503 1505.953014196109 558.7673693884393Q1502.0056458631148 554.0250449328285 1501.0188037798666 546.9252643894571L1501.0188037798666 546.9252643894571L1500.031961696618 546.9252643894571Q1496.6602512455188 555.8068431386938 1489.2589356211552 560.8507026752973Q1481.857619996791 565.8671499318106 1469.439857115914 565.8671499318106L1469.439857115914 565.8671499318106Q1453.4310855432159 565.8671499318106 1443.9738489120841 557.5886413445592Q1434.4892000008622 549.3101327573077 1434.4892000008622 534.8912734298433L1434.4892000008622 534.8912734298433Q1434.4892000008622 520.6917123431008 1444.851041874972 512.9888616377443Q1455.212883749081 505.28601093238785 1478.3214358651503 505.28601093238785L1478.3214358651503 505.28601093238785L1500.031961696618 505.28601093238785L1500.031961696618 495.225704139271Q1500.031961696618 483.95925702218375 1493.6997249957735 478.3397396036853Q1487.3949005750187 472.7202221851868 1475.7446815366684 472.7202221851868L1475.7446815366684 472.7202221851868Q1465.4924887829197 472.7202221851868 1458.9683661214435 476.7772396385418Q1452.4442434599673 480.80684481180657 1448.496875126973 487.7147393945462L1448.496875126973 487.7147393945462L1437.8609104519614 479.82000272855805Q1439.8345946184581 475.872634395564 1443.1788927894672 472.1171520232016Q1446.5231909604759 468.3890819309294 1451.4574013767187 465.51079252145456Q1456.3916117929612 462.65991539207 1462.7238484938057 460.98776630656556Q1469.0286729145605 459.28820494097084 1476.731523619917 459.28820494097084L1476.731523619917 459.28820494097084Q1494.6865670790216 459.28820494097084 1505.2402949137627 468.3890819309294Q1515.8214350285944 477.4625466407977 1515.8214350285944 493.63579189403725L1515.8214350285944 493.63579189403725L1515.8214350285944 549.693904678571L1530.0209961153369 549.693904678571L1530.0209961153369 563.5096938440503ZM1472.1810851249375 552.6544309283165L1472.1810851249375 552.6544309283165Q1478.3214358651503 552.6544309283165 1483.3378831216637 551.1741678034438Q1488.3817426582673 549.693904678571 1492.13722503063 547.2267994704497Q1495.865295122902 544.7596942623284 1497.9486284097602 541.3057469709586Q1500.031961696618 537.8517996795888 1500.031961696618 533.9044313465947L1500.031961696618 533.9044313465947L1500.031961696618 517.12811593137L1478.3214358651503 517.12811593137Q1464.0944624983176 517.12811593137 1457.5977521169316 521.075484264364Q1451.0736294554554 525.0228525973581 1451.0736294554554 532.533817342083L1451.0736294554554 532.533817342083L1451.0736294554554 536.6730716357087Q1451.0736294554554 544.5678083016968 1456.693146873954 548.5974134749615Q1462.3126642924526 552.6544309283165 1472.1810851249375 552.6544309283165ZM1565.16353919102 563.5096938440503L1550.552793902924 563.5096938440503L1550.552793902924 461.6730733088215L1565.16353919102 461.6730733088215L1565.16353919102 473.51517830780364L1565.9310830335467 473.51517830780364Q1568.315951401397 467.5941258083125 1572.6470916556545 463.45487151468683Q1577.005644190002 459.28820494097084 1585.4760387378851 459.28820494097084L1585.4760387378851 459.28820494097084Q1594.3576174871218 459.28820494097084 1598.7161700214697 463.7289943155892Q1603.0473102757269 468.1697836902075 1604.0341523589755 475.296976513669L1604.0341523589755 475.296976513669L1604.6372225209607 475.296976513669Q1607.378450529984 468.3890819309294 1612.5319591869488 463.83864343595013Q1617.658055563823 459.28820494097084 1626.7315202736913 459.28820494097084L1626.7315202736913 459.28820494097084Q1639.1766954346585 459.28820494097084 1643.398186568555 467.97789772957583Q1647.6470899825417 476.6675905181809 1647.6470899825417 492.8408357714204L1647.6470899825417 492.8408357714204L1647.6470899825417 563.5096938440503L1633.0363446944457 563.5096938440503L1633.0363446944457 495.41759009990267Q1633.0363446944457 482.3967570570403 1630.3773535256928 477.3528975204368Q1627.71836235694 472.3364502639235 1620.6185818135687 472.3364502639235L1620.6185818135687 472.3364502639235Q1614.2863451127237 472.3364502639235 1610.3389767797298 476.36605543718827Q1606.3916084467355 480.42307289054327 1606.3916084467355 488.70158147779466L1606.3916084467355 488.70158147779466L1606.3916084467355 563.5096938440503L1591.8082754387297 563.5096938440503L1591.8082754387297 495.41759009990267Q1591.8082754387297 482.3967570570403 1589.1218719898866 477.3528975204368Q1586.4628808211337 472.3364502639235 1579.5549862383941 472.3364502639235L1579.5549862383941 472.3364502639235Q1573.2501618176398 472.3364502639235 1569.1931443642848 476.36605543718827Q1565.16353919102 480.42307289054327 1565.16353919102 488.70158147779466L1565.16353919102 488.70158147779466L1565.16353919102 563.5096938440503ZM1718.6997199764346 565.8671499318106L1718.6997199764346 565.8671499318106Q1702.718360683827 565.8671499318106 1691.1777907658375 560.4395184739437Q1679.6372208478479 555.0118870160769 1671.5231859411379 545.9384223062086L1671.5231859411379 545.9384223062086L1682.1865628962396 536.6730716357087Q1689.5056416803327 544.3759223410651 1698.1679221888476 548.5151766346909Q1706.8576149774526 552.6544309283165 1719.1109041777881 552.6544309283165L1719.1109041777881 552.6544309283165Q1730.9530091767706 552.6544309283165 1738.546210761766 548.4055275143298Q1746.1394123467617 544.1566241003433 1746.1394123467617 535.083159390475L1746.1394123467617 535.083159390475Q1746.1394123467617 531.1357910574809 1744.659149221889 528.4767998887279Q1743.178886097016 525.817808719975 1740.6021317685336 524.2278964747413Q1738.0527897201418 522.6653965095977 1734.9003775097644 521.7607912666199Q1731.7205530192973 520.8835983037325 1728.1843688876565 520.2805281417473L1728.1843688876565 520.2805281417473L1712.2030095950486 517.9230720539869Q1706.8576149774526 517.12811593137 1700.6350273969688 515.7575019268581Q1694.4398520965756 514.359475642256 1689.2863434396108 511.31671255223984Q1684.1602470627367 508.24653718213335 1680.706299771367 503.12044080525914Q1677.2523524799972 497.99434442838486 1677.2523524799972 489.68842356104324L1677.2523524799972 489.68842356104324Q1677.2523524799972 481.98557285568677 1680.3225278501036 476.36605543718827Q1683.3652909401198 470.74653801868976 1688.9025715183475 466.9088188060566Q1694.4398520965756 463.0436873133333 1701.9234045612102 461.1796522671972Q1709.434369305935 459.28820494097084 1718.3159480551717 459.28820494097084L1718.3159480551717 459.28820494097084Q1732.1317372206508 459.28820494097084 1742.3016931341285 463.6467574753185Q1752.444236767516 467.97789772957583 1759.7633155516091 475.68074843493235L1759.7633155516091 475.68074843493235L1749.4837105177703 485.3572833067858Q1747.7293245919955 483.19171317965714 1745.0429211431524 480.9164939321675Q1742.383929974399 478.64127468467785 1738.546210761766 476.7772396385418Q1734.6810792690426 474.88579231231546 1729.5549828921685 473.7070642684353Q1724.4288865152944 472.5283362245551 1717.712877893186 472.5283362245551L1717.712877893186 472.5283362245551Q1705.6788869335724 472.5283362245551 1699.2644133924573 476.6675905181809Q1692.8499398513418 480.80684481180657 1692.8499398513418 488.70158147779466L1692.8499398513418 488.70158147779466Q1692.8499398513418 492.64894981078874 1694.3302029762144 495.3079409795417Q1695.810466101087 497.99434442838486 1698.3872204295694 499.55684439352837Q1700.9365624779616 501.1467566387621 1704.1986238086997 502.02394960164963Q1707.4606851394378 502.92855484462746 1710.8049833104465 503.50421272652244L1710.8049833104465 503.50421272652244L1726.7863426030544 505.889081094373Q1732.3236231812825 506.6566249368997 1738.4365616414052 508.0546512215017Q1744.5495001015279 509.4252652260135 1749.7030087584926 512.49544059612Q1754.8291051353667 515.5382036861363 1758.2830524267365 520.6917123431008Q1761.7369997181063 525.817808719975 1761.7369997181063 534.0963173072264L1761.7369997181063 534.0963173072264Q1761.7369997181063 549.3101327573077 1749.9771315593948 557.5886413445592Q1738.2446756807735 565.8671499318106 1718.6997199764346 565.8671499318106ZM1835.9420419223766 565.2914920499156L1835.9420419223766 565.2914920499156Q1827.8554192957567 565.2914920499156 1824.5933579650186 561.9197815988165Q1821.3312966342805 558.5754834278076 1821.3312966342805 553.4493870509334L1821.3312966342805 553.4493870509334L1821.3312966342805 549.8857906392027Q1821.3312966342805 544.7596942623284 1824.5933579650186 541.4153960913195Q1827.8554192957567 538.0436856402205 1835.9420419223766 538.0436856402205L1835.9420419223766 538.0436856402205Q1844.0286645489964 538.0436856402205 1847.2907258797345 541.4153960913195Q1850.5527872104726 544.7596942623284 1850.5527872104726 549.8857906392027L1850.5527872104726 549.8857906392027L1850.5527872104726 553.4493870509334Q1850.5527872104726 558.5754834278076 1847.2907258797345 561.9197815988165Q1844.0286645489964 565.2914920499156 1835.9420419223766 565.2914920499156ZM1955.5418199560786 565.8671499318106L1955.5418199560786 565.8671499318106Q1939.5604606634706 565.8671499318106 1928.019890745481 560.4395184739437Q1916.4793208274914 555.0118870160769 1908.3652859207814 545.9384223062086L1908.3652859207814 545.9384223062086L1919.0286628758836 536.6730716357087Q1926.3477416599767 544.3759223410651 1935.0100221684916 548.5151766346909Q1943.6997149570966 552.6544309283165 1955.9530041574321 552.6544309283165L1955.9530041574321 552.6544309283165Q1967.7951091564141 552.6544309283165 1975.38831074141 548.4055275143298Q1982.9815123264057 544.1566241003433 1982.9815123264057 535.083159390475L1982.9815123264057 535.083159390475Q1982.9815123264057 531.1357910574809 1981.5012492015326 528.4767998887279Q1980.02098607666 525.817808719975 1977.4442317481776 524.2278964747413Q1974.8948896997854 522.6653965095977 1971.7424774894084 521.7607912666199Q1968.5626529989408 520.8835983037325 1965.0264688673005 520.2805281417473L1965.0264688673005 520.2805281417473L1949.0451095746926 517.9230720539869Q1943.6997149570966 517.12811593137 1937.4771273766128 515.7575019268581Q1931.281952076219 514.359475642256 1926.1284434192548 511.31671255223984Q1921.0023470423807 508.24653718213335 1917.548399751011 503.12044080525914Q1914.0944524596412 497.99434442838486 1914.0944524596412 489.68842356104324L1914.0944524596412 489.68842356104324Q1914.0944524596412 481.98557285568677 1917.1646278297476 476.36605543718827Q1920.2073909197634 470.74653801868976 1925.7446714979915 466.9088188060566Q1931.281952076219 463.0436873133333 1938.7655045408537 461.1796522671972Q1946.2764692855785 459.28820494097084 1955.1580480348152 459.28820494097084L1955.1580480348152 459.28820494097084Q1968.9738372002944 459.28820494097084 1979.1437931137725 463.6467574753185Q1989.2863367471596 467.97789772957583 1996.6054155312531 475.68074843493235L1996.6054155312531 475.68074843493235L1986.3258104974143 485.3572833067858Q1984.5714245716395 483.19171317965714 1981.885021122796 480.9164939321675Q1979.226029954043 478.64127468467785 1975.38831074141 476.7772396385418Q1971.5231792486866 474.88579231231546 1966.3970828718125 473.7070642684353Q1961.2709864949384 472.5283362245551 1954.55497787283 472.5283362245551L1954.55497787283 472.5283362245551Q1942.5209869132163 472.5283362245551 1936.1065133721008 476.6675905181809Q1929.6920398309858 480.80684481180657 1929.6920398309858 488.70158147779466L1929.6920398309858 488.70158147779466Q1929.6920398309858 492.64894981078874 1931.1723029558584 495.3079409795417Q1932.652566080731 497.99434442838486 1935.2293204092134 499.55684439352837Q1937.7786624576056 501.1467566387621 1941.0407237883437 502.02394960164963Q1944.3027851190818 502.92855484462746 1947.6470832900904 503.50421272652244L1947.6470832900904 503.50421272652244L1963.6284425826984 505.889081094373Q1969.1657231609265 506.6566249368997 1975.2786616210492 508.0546512215017Q1981.3916000811719 509.4252652260135 1986.5451087381362 512.49544059612Q1991.6712051150103 515.5382036861363 1995.1251524063805 520.6917123431008Q1998.5790996977503 525.817808719975 1998.5790996977503 534.0963173072264L1998.5790996977503 534.0963173072264Q1998.5790996977503 549.3101327573077 1986.8192315390388 557.5886413445592Q1975.0867756604175 565.8671499318106 1955.5418199560786 565.8671499318106ZM2032.9266866508165 563.5096938440503L2032.9266866508165 417.4570655232699L2048.7161599827928 417.4570655232699L2048.7161599827928 478.25750276341455L2049.4837038253195 478.25750276341455Q2051.0736160705533 474.50202039105216 2053.4310721583133 471.04807309968237Q2055.815940526164 467.5941258083125 2059.269887817534 465.01737147983033Q2062.7238351089036 462.4680294314383 2067.466159564515 460.8781171862046Q2072.181071740035 459.28820494097084 2078.51330844088 459.28820494097084L2078.51330844088 459.28820494097084Q2094.494667733488 459.28820494097084 2104.1712026053415 469.45816085444864Q2113.8477374771946 479.6281167679264 2113.8477374771946 498.18623038901654L2113.8477374771946 498.18623038901654L2113.8477374771946 563.5096938440503L2098.0582641452183 563.5096938440503L2098.0582641452183 500.9548706781304Q2098.0582641452183 486.9197832719293 2091.9179134050055 480.12153780955066Q2085.804974944883 473.323292347172 2073.962869945901 473.323292347172L2073.962869945901 473.323292347172Q2069.2205454902896 473.323292347172 2064.6975192754007 474.50202039105216Q2060.147080780421 475.68074843493235 2056.610896648781 478.0382045226927Q2053.04730023705 480.42307289054327 2050.881730109921 484.17855526290566Q2048.7161599827928 487.9066253551778 2048.7161599827928 492.8408357714204L2048.7161599827928 492.8408357714204L2048.7161599827928 563.5096938440503L2032.9266866508165 563.5096938440503Z " fill="#ffafcc" transform="matrix(0.41393709490134467,0,0,0.41393709490134456,0,96.8118760851811)"/></g></svg>
|
|
Binary file
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
const dateElement = document.getElementById('current-date')
|
|
2
|
+
const dayElement = document.getElementById('current-day')
|
|
3
|
+
|
|
4
|
+
const monthElement = document.getElementById('current-month')
|
|
5
|
+
const yearElement = document.getElementById('current-year')
|
|
6
|
+
|
|
7
|
+
const hourElement = document.getElementById('hours')
|
|
8
|
+
const minuteElement = document.getElementById('minutes')
|
|
9
|
+
const secondElement = document.getElementById('seconds')
|
|
10
|
+
|
|
11
|
+
// Array of days to work with
|
|
12
|
+
|
|
13
|
+
const weekDays = ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"];
|
|
14
|
+
|
|
15
|
+
const monthNames = ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"]
|
|
16
|
+
|
|
17
|
+
function updateClockandCalendar(){
|
|
18
|
+
const now = new Date();
|
|
19
|
+
// updating the time
|
|
20
|
+
hourElement.textContent = String(now.getHours()).padStart(2, '0')
|
|
21
|
+
minuteElement.textContent = String(now.getMinutes()).padStart(2, '0')
|
|
22
|
+
secondElement.textContent = String(now.getSeconds()).padStart(2, '0')
|
|
23
|
+
// Updating the clock/date
|
|
24
|
+
dateElement.textContent = String(now.getDate()).padStart(2, '0');
|
|
25
|
+
dayElement.textContent = weekDays[now.getDay()]
|
|
26
|
+
monthElement.textContent = monthNames[now.getMonth()]
|
|
27
|
+
yearElement.textContent = now.getFullYear();
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
//update teh clock every one second
|
|
31
|
+
|
|
32
|
+
setInterval(updateClockandCalendar, 1000);
|
|
33
|
+
updateClockandCalendar()
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
img {
|
|
2
|
+
width: 450px;
|
|
3
|
+
height: 300px;
|
|
4
|
+
margin: 10px;
|
|
5
|
+
border: 10px solid #fefae0;
|
|
6
|
+
-webkit-filter: sepia(100%);
|
|
7
|
+
filter: sepia(100%);
|
|
8
|
+
transition-duration: 1s;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
img:hover {
|
|
12
|
+
border: 5px solid #fff;
|
|
13
|
+
-webkit-transform: scale(1.1);
|
|
14
|
+
-ms-transform: scale(1.1);
|
|
15
|
+
transform: scale(1.1);
|
|
16
|
+
-webkit-filter: none;
|
|
17
|
+
filter: none;
|
|
18
|
+
}
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
|
|
2
|
+
/* blinking cursor */
|
|
3
|
+
|
|
4
|
+
.blinking-cursor {
|
|
5
|
+
color: #2E3D48;
|
|
6
|
+
-webkit-animation: 1s blink step-end infinite;
|
|
7
|
+
-moz-animation: 1s blink step-end infinite;
|
|
8
|
+
-ms-animation: 1s blink step-end infinite;
|
|
9
|
+
-o-animation: 1s blink step-end infinite;
|
|
10
|
+
animation: 1s blink step-end infinite;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
@keyframes "blink" {
|
|
14
|
+
from, to {
|
|
15
|
+
color: transparent;
|
|
16
|
+
}
|
|
17
|
+
50% {
|
|
18
|
+
color: whitesmoke;
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
@-moz-keyframes blink {
|
|
23
|
+
from, to {
|
|
24
|
+
color: transparent;
|
|
25
|
+
}
|
|
26
|
+
50% {
|
|
27
|
+
color: whitesmoke;
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
@-webkit-keyframes "blink" {
|
|
32
|
+
from, to {
|
|
33
|
+
color: transparent;
|
|
34
|
+
}
|
|
35
|
+
50% {
|
|
36
|
+
color: whitesmoke;
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
@-ms-keyframes "blink" {
|
|
41
|
+
from, to {
|
|
42
|
+
color: transparent;
|
|
43
|
+
}
|
|
44
|
+
50% {
|
|
45
|
+
color: whitesmoke;
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
@-o-keyframes "blink" {
|
|
50
|
+
from, to {
|
|
51
|
+
color: transparent;
|
|
52
|
+
}
|
|
53
|
+
50% {
|
|
54
|
+
color: whitesmoke;
|
|
55
|
+
}
|
|
56
|
+
}
|
|
@@ -0,0 +1,105 @@
|
|
|
1
|
+
.fa-brands,
|
|
2
|
+
.fa-solid,
|
|
3
|
+
.fa-regular {
|
|
4
|
+
color: #212121;
|
|
5
|
+
padding-right: 5px;
|
|
6
|
+
font-size: 20px;
|
|
7
|
+
}
|
|
8
|
+
.fa-etsy {
|
|
9
|
+
background-color: darkorange;
|
|
10
|
+
color: white;
|
|
11
|
+
}
|
|
12
|
+
.fa-bluesky {
|
|
13
|
+
background: skyblue;
|
|
14
|
+
color: white;
|
|
15
|
+
}
|
|
16
|
+
.fa-youtube {
|
|
17
|
+
color: red;
|
|
18
|
+
background: white;
|
|
19
|
+
}
|
|
20
|
+
.fa-linkedin {
|
|
21
|
+
color: rgb(6, 6, 175);
|
|
22
|
+
}
|
|
23
|
+
.fa-github {
|
|
24
|
+
color: black;
|
|
25
|
+
}
|
|
26
|
+
.fa-twitch {
|
|
27
|
+
color: purple;
|
|
28
|
+
}
|
|
29
|
+
.fa-dev {
|
|
30
|
+
color: black;
|
|
31
|
+
}
|
|
32
|
+
.fa-folder {
|
|
33
|
+
color: skyblue;
|
|
34
|
+
}
|
|
35
|
+
.fa-envelope, .fa-wifi {
|
|
36
|
+
color: white;
|
|
37
|
+
}
|
|
38
|
+
.fa-gear {
|
|
39
|
+
color: #272727;
|
|
40
|
+
}
|
|
41
|
+
.xl {
|
|
42
|
+
font-size: 40px;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
.toolbar-bottom {
|
|
46
|
+
position: absolute;
|
|
47
|
+
bottom: 0;
|
|
48
|
+
background: grey;
|
|
49
|
+
color: white;
|
|
50
|
+
font-size: 0.875rem;
|
|
51
|
+
border-top-left-radius: 4px;
|
|
52
|
+
border-top-right-radius: 4px;
|
|
53
|
+
width: 100%;
|
|
54
|
+
height:40px;
|
|
55
|
+
display: flex;
|
|
56
|
+
}
|
|
57
|
+
.toolbar-right {
|
|
58
|
+
color: white;
|
|
59
|
+
position: absolute;
|
|
60
|
+
right: 0;
|
|
61
|
+
bottom: 0;
|
|
62
|
+
display: inline-flex;
|
|
63
|
+
}
|
|
64
|
+
.menu-time {
|
|
65
|
+
/* display: inline-block;*/
|
|
66
|
+
font-size: 0.875rem;
|
|
67
|
+
}
|
|
68
|
+
.dropdown {
|
|
69
|
+
display: inline-block;
|
|
70
|
+
}
|
|
71
|
+
.dropdown button {
|
|
72
|
+
font-size: 1rem;
|
|
73
|
+
font-size: clamp(1rem, 0.95rem + 0.25vw, 1.25rem);
|
|
74
|
+
background: darkgrey;
|
|
75
|
+
width: 110px;
|
|
76
|
+
padding: 5px;
|
|
77
|
+
border: none;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
.dropdown a {
|
|
81
|
+
color: #212121;
|
|
82
|
+
display: block;
|
|
83
|
+
text-decoration: none;
|
|
84
|
+
padding: 5px 10px;
|
|
85
|
+
cursor: pointer;
|
|
86
|
+
}
|
|
87
|
+
.dropdown .content {
|
|
88
|
+
display: none;
|
|
89
|
+
position: absolute;
|
|
90
|
+
background:darkgrey;
|
|
91
|
+
min-width: 120px;
|
|
92
|
+
bottom: 100%;
|
|
93
|
+
box-shadow: 0 8px 16px 0 #FFFFFF;
|
|
94
|
+
}
|
|
95
|
+
.dropdown:hover .content {
|
|
96
|
+
display: block;
|
|
97
|
+
}
|
|
98
|
+
.dropdown:hover button {
|
|
99
|
+
background: #111111;
|
|
100
|
+
color: whitesmoke;
|
|
101
|
+
}
|
|
102
|
+
.dropdown a:hover {
|
|
103
|
+
background: #212121;
|
|
104
|
+
}
|
|
105
|
+
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
.logo {
|
|
2
|
+
font-family: "Press Start 2P";
|
|
3
|
+
font-size: 2.5rem;
|
|
4
|
+
color: rgb(45, 45, 45);
|
|
5
|
+
position: absolute;
|
|
6
|
+
right: 0;
|
|
7
|
+
bottom: 0;
|
|
8
|
+
margin: 40px;
|
|
9
|
+
background: linear-gradient(90deg, red, orange, yellow, green, blue, purple);
|
|
10
|
+
background-clip: text;
|
|
11
|
+
-webkit-background-clip: text;
|
|
12
|
+
}
|
|
13
|
+
.logo:hover {
|
|
14
|
+
color: transparent;
|
|
15
|
+
transition: 500ms ease;
|
|
16
|
+
}
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
/* Important styles */
|
|
2
|
+
#toggle {
|
|
3
|
+
display: inline-block;
|
|
4
|
+
width: 150px;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
#toggle button:after,
|
|
8
|
+
#toggle button:before {
|
|
9
|
+
content: "";
|
|
10
|
+
position: absolute;
|
|
11
|
+
|
|
12
|
+
}
|
|
13
|
+
#toggle button:after{
|
|
14
|
+
bottom: 9px;
|
|
15
|
+
}
|
|
16
|
+
#toggle button {
|
|
17
|
+
position: relative;
|
|
18
|
+
display: block;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
#toggle button,
|
|
22
|
+
#toggle button:after,
|
|
23
|
+
#toggle button:before {
|
|
24
|
+
width: 100%;
|
|
25
|
+
transition: all 0.3s;
|
|
26
|
+
backface-visibility: hidden;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
/* on activation */
|
|
30
|
+
#toggle.on button {
|
|
31
|
+
background-color: transparent;
|
|
32
|
+
}
|
|
33
|
+
#toggle.on button:before {
|
|
34
|
+
transform: rotate(45deg) translate(5px, 5px);
|
|
35
|
+
}
|
|
36
|
+
#toggle.on button:after {
|
|
37
|
+
transform: rotate(-45deg) translate(7px, -8px);
|
|
38
|
+
}
|
|
39
|
+
#toggle.on + #menu {
|
|
40
|
+
opacity: 1;
|
|
41
|
+
visibility: visible;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
/* menu appearance*/
|
|
45
|
+
#menu {
|
|
46
|
+
position: relative;
|
|
47
|
+
width: 200px;
|
|
48
|
+
padding: 10px;
|
|
49
|
+
margin: auto;
|
|
50
|
+
font-family: "Segoe UI", Candara, "Bitstream Vera Sans", "DejaVu Sans", "Bitstream Vera Sans", "Trebuchet MS", Verdana, "Verdana Ref", sans-serif;
|
|
51
|
+
text-align: center;
|
|
52
|
+
border-radius: 4px;
|
|
53
|
+
box-shadow: 0 1px 8px rgba(0,0,0,0.05);
|
|
54
|
+
/* just for this demo */
|
|
55
|
+
opacity: 0;
|
|
56
|
+
visibility: hidden;
|
|
57
|
+
transition: opacity .4s;
|
|
58
|
+
}
|
|
59
|
+
#menu:after {
|
|
60
|
+
position: absolute;
|
|
61
|
+
|
|
62
|
+
content: "";
|
|
63
|
+
display: block;
|
|
64
|
+
border-left: 15px solid transparent;
|
|
65
|
+
border-right: 15px solid transparent;
|
|
66
|
+
border-bottom: 20px solid white;
|
|
67
|
+
}
|
|
68
|
+
ul, li, li a {
|
|
69
|
+
list-style: none;
|
|
70
|
+
display: block;
|
|
71
|
+
margin: 0;
|
|
72
|
+
padding: 0;
|
|
73
|
+
}
|
|
74
|
+
li a {
|
|
75
|
+
padding: 5px;
|
|
76
|
+
color: #888;
|
|
77
|
+
text-decoration: none;
|
|
78
|
+
transition: all .2s;
|
|
79
|
+
}
|
|
80
|
+
li a:hover,
|
|
81
|
+
li a:focus {
|
|
82
|
+
background: #1ABC9C;
|
|
83
|
+
color: #fff;
|
|
84
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
.post-list {
|
|
2
|
+
display: block;
|
|
3
|
+
flex-wrap: nowrap;
|
|
4
|
+
flex-direction: column;
|
|
5
|
+
}
|
|
6
|
+
.postlist-user {
|
|
7
|
+
display: inline-block;
|
|
8
|
+
padding: 0 10px;
|
|
9
|
+
}
|
|
10
|
+
.postlist-perms,.nav-perms {
|
|
11
|
+
display: inline-block;
|
|
12
|
+
padding-right: 5px;
|
|
13
|
+
}
|
|
14
|
+
.postlist-date, .nav-date {
|
|
15
|
+
display: inline-block;
|
|
16
|
+
padding-right: 15px;
|
|
17
|
+
}
|
|
18
|
+
.nav-dir {
|
|
19
|
+
font-weight: bold;
|
|
20
|
+
}
|
|
21
|
+
.nav-user {
|
|
22
|
+
display: inline-block;
|
|
23
|
+
padding-right: 10px;
|
|
24
|
+
}
|
|
@@ -0,0 +1,157 @@
|
|
|
1
|
+
@import url("https://fonts.googleapis.com/css2?family=Fira+Code&family=Fira+Code:wght@400;700&display=swap");
|
|
2
|
+
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css');
|
|
3
|
+
@import url('footer.css');
|
|
4
|
+
@import url('album.css');
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
:root {
|
|
8
|
+
--background: #2f2f2f; /* Dark background */
|
|
9
|
+
--foreground: #212121;
|
|
10
|
+
--accent: #9e9e9e; /* More neutral accent color */
|
|
11
|
+
--font-size: 1rem;
|
|
12
|
+
--line-height: 1.54rem;
|
|
13
|
+
--radius: 4px; /* Slightly rounded edges for buttons */
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
html {
|
|
17
|
+
box-sizing: border-box;
|
|
18
|
+
}
|
|
19
|
+
*,
|
|
20
|
+
*:before,
|
|
21
|
+
*:after {
|
|
22
|
+
box-sizing: inherit;
|
|
23
|
+
margin: 0;
|
|
24
|
+
padding: 0;
|
|
25
|
+
}
|
|
26
|
+
body {
|
|
27
|
+
background: #121212; /* Dark solid background for the overall page */
|
|
28
|
+
font-family: "Fira Code", Monaco, Consolas, "Ubuntu Mono", monospace;
|
|
29
|
+
color: var(--foreground);
|
|
30
|
+
line-height: var(--line-height);
|
|
31
|
+
height: 100vh;
|
|
32
|
+
}
|
|
33
|
+
h1 {
|
|
34
|
+
/*font-size: calc(var(--font-size) * 1.1);*/
|
|
35
|
+
font-size: 1.125rem;
|
|
36
|
+
font-size: clamp(1.125rem, 0.44999999999999996rem + 1.2vw, 1.5rem);
|
|
37
|
+
text-transform: uppercase;
|
|
38
|
+
letter-spacing: 0.1em;
|
|
39
|
+
}
|
|
40
|
+
h3 {
|
|
41
|
+
font-size: 0.9375rem;
|
|
42
|
+
font-size: clamp(0.9375rem, 0.9rem + 0.1875vw, 1.125rem);
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
.title {
|
|
46
|
+
margin-left: 450px;
|
|
47
|
+
text-align: center;
|
|
48
|
+
font-weight: bold;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
.folder-1 {
|
|
52
|
+
width: 90%;
|
|
53
|
+
height: 80vh;
|
|
54
|
+
margin: 0 auto;
|
|
55
|
+
display: grid;
|
|
56
|
+
grid-template-rows: repeat(4, 1fr);
|
|
57
|
+
grid-template-columns: 1fr 3fr;
|
|
58
|
+
}
|
|
59
|
+
.container {
|
|
60
|
+
display: grid;
|
|
61
|
+
grid-template-columns: 1fr minmax(100px, 3fr) 1fr;
|
|
62
|
+
width: 75%;
|
|
63
|
+
margin: 0 auto;
|
|
64
|
+
}
|
|
65
|
+
.toolbar-top {
|
|
66
|
+
background: lightgray;
|
|
67
|
+
border-top-left-radius: 5px;
|
|
68
|
+
border-top-right-radius: 5px;
|
|
69
|
+
grid-row: 1;
|
|
70
|
+
grid-column: 1 /5;
|
|
71
|
+
}
|
|
72
|
+
.other-buttons {
|
|
73
|
+
grid-row: 1;
|
|
74
|
+
grid-column: 4;
|
|
75
|
+
z-index: 1;
|
|
76
|
+
}
|
|
77
|
+
.navigation {
|
|
78
|
+
grid-row: 3;
|
|
79
|
+
grid-column: 1 / 5 ;
|
|
80
|
+
}
|
|
81
|
+
.side-menu {
|
|
82
|
+
background: whitesmoke;
|
|
83
|
+
grid-row: 4 / 5;
|
|
84
|
+
grid-column: 1;
|
|
85
|
+
|
|
86
|
+
}
|
|
87
|
+
.toolbar {
|
|
88
|
+
grid-row: 2;
|
|
89
|
+
grid-column: 1 / 5;
|
|
90
|
+
background: grey;
|
|
91
|
+
z-index: 1;
|
|
92
|
+
}
|
|
93
|
+
.post-list {
|
|
94
|
+
background: whitesmoke;
|
|
95
|
+
grid-row: 4 ;
|
|
96
|
+
grid-column: 2 / 5;
|
|
97
|
+
}
|
|
98
|
+
.bottom-toolbar {
|
|
99
|
+
background: lightgrey;
|
|
100
|
+
height: 35px;
|
|
101
|
+
border: 1px solid grey;
|
|
102
|
+
border-top: 0;
|
|
103
|
+
border-bottom-right-radius: 5px;
|
|
104
|
+
border-bottom-left-radius: 5px;
|
|
105
|
+
grid-row: 5;
|
|
106
|
+
grid-column: 1 / 5;
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
.other-buttons {
|
|
110
|
+
margin-left: auto;
|
|
111
|
+
}
|
|
112
|
+
.mycompy {
|
|
113
|
+
font-size: 20px;
|
|
114
|
+
font-weight: bold;
|
|
115
|
+
}
|
|
116
|
+
.sidebar {
|
|
117
|
+
align-items: center;
|
|
118
|
+
}
|
|
119
|
+
.navi {
|
|
120
|
+
background: lightgrey;
|
|
121
|
+
}
|
|
122
|
+
.scrollable {
|
|
123
|
+
height: 80vh;
|
|
124
|
+
padding: 5px;
|
|
125
|
+
overflow: auto; /* Enables scrolling when content overflows */
|
|
126
|
+
}
|
|
127
|
+
.navi button {
|
|
128
|
+
border: 0;
|
|
129
|
+
background: transparent;
|
|
130
|
+
padding: 2px;
|
|
131
|
+
}
|
|
132
|
+
.index-items button, .index-posts button {
|
|
133
|
+
border: 0;
|
|
134
|
+
background: transparent;
|
|
135
|
+
width: 75px;
|
|
136
|
+
padding: 5px;
|
|
137
|
+
font-size: 16px;
|
|
138
|
+
color:darkblue;
|
|
139
|
+
}
|
|
140
|
+
.toolbar-right{
|
|
141
|
+
display: grid;
|
|
142
|
+
grid-template-columns: 1fr 1fr;
|
|
143
|
+
grid-template-rows: auto;
|
|
144
|
+
}
|
|
145
|
+
.bugreport{
|
|
146
|
+
grid-area: 1/3;
|
|
147
|
+
}
|
|
148
|
+
.digital-clock{
|
|
149
|
+
grid-area: 2 /3;
|
|
150
|
+
padding: 0 5px;
|
|
151
|
+
}
|
|
152
|
+
.calendar-right{
|
|
153
|
+
grid-area: 2/2;
|
|
154
|
+
padding: 0 10px;
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
/*row, column, row end column end*/
|
metadata
ADDED
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: trillOS
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.1.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- OGtrilliams
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2025-01-25 00:00:00.000000000 Z
|
|
12
|
+
dependencies:
|
|
13
|
+
- !ruby/object:Gem::Dependency
|
|
14
|
+
name: jekyll
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
17
|
+
- - "~>"
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: '4.3'
|
|
20
|
+
type: :runtime
|
|
21
|
+
prerelease: false
|
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
+
requirements:
|
|
24
|
+
- - "~>"
|
|
25
|
+
- !ruby/object:Gem::Version
|
|
26
|
+
version: '4.3'
|
|
27
|
+
description:
|
|
28
|
+
email:
|
|
29
|
+
- tribecca@tribecc.us
|
|
30
|
+
executables: []
|
|
31
|
+
extensions: []
|
|
32
|
+
extra_rdoc_files: []
|
|
33
|
+
files:
|
|
34
|
+
- LICENSE.txt
|
|
35
|
+
- README.md
|
|
36
|
+
- _data/navigation.yml
|
|
37
|
+
- _includes/footer.html
|
|
38
|
+
- _includes/head.html
|
|
39
|
+
- _includes/header.html
|
|
40
|
+
- _includes/menu_item.html
|
|
41
|
+
- _includes/navigation.html
|
|
42
|
+
- _includes/post_list.html
|
|
43
|
+
- _includes/postlist.html
|
|
44
|
+
- _layouts/default.html
|
|
45
|
+
- _layouts/images.html
|
|
46
|
+
- _layouts/page.html
|
|
47
|
+
- _layouts/post.html
|
|
48
|
+
- assets/images/android-chrome-192x192.png
|
|
49
|
+
- assets/images/android-chrome-512x512.png
|
|
50
|
+
- assets/images/apple-touch-icon.png
|
|
51
|
+
- assets/images/avocado-kawaii.png
|
|
52
|
+
- assets/images/background.jpg
|
|
53
|
+
- assets/images/bkg.png
|
|
54
|
+
- assets/images/favicon-16x16.png
|
|
55
|
+
- assets/images/favicon-32x32.png
|
|
56
|
+
- assets/images/favicon.ico
|
|
57
|
+
- assets/images/logo.png
|
|
58
|
+
- assets/images/logo.svg
|
|
59
|
+
- assets/images/withgoggy.png
|
|
60
|
+
- assets/js/tmedate.js
|
|
61
|
+
- assets/scss/album.css
|
|
62
|
+
- assets/scss/cursor.css
|
|
63
|
+
- assets/scss/footer.css
|
|
64
|
+
- assets/scss/links.css
|
|
65
|
+
- assets/scss/logo.css
|
|
66
|
+
- assets/scss/menu.css
|
|
67
|
+
- assets/scss/postlist.css
|
|
68
|
+
- assets/scss/style.css
|
|
69
|
+
homepage: https://github.com/OGtrilliams/trillOS
|
|
70
|
+
licenses:
|
|
71
|
+
- MIT
|
|
72
|
+
metadata: {}
|
|
73
|
+
post_install_message:
|
|
74
|
+
rdoc_options: []
|
|
75
|
+
require_paths:
|
|
76
|
+
- lib
|
|
77
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
78
|
+
requirements:
|
|
79
|
+
- - ">="
|
|
80
|
+
- !ruby/object:Gem::Version
|
|
81
|
+
version: '0'
|
|
82
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
83
|
+
requirements:
|
|
84
|
+
- - ">="
|
|
85
|
+
- !ruby/object:Gem::Version
|
|
86
|
+
version: '0'
|
|
87
|
+
requirements: []
|
|
88
|
+
rubygems_version: 3.3.26
|
|
89
|
+
signing_key:
|
|
90
|
+
specification_version: 4
|
|
91
|
+
summary: Linux desktop-themed layout using Jekyll
|
|
92
|
+
test_files: []
|