diff options
| author | Andrew Lee <alee14498@protonmail.com> | 2020-04-29 10:57:21 -0400 |
|---|---|---|
| committer | Andrew Lee <alee14498@protonmail.com> | 2020-04-29 10:57:21 -0400 |
| commit | 37522c3ce749f6582c47e892c935297220e926dc (patch) | |
| tree | d3e509449cd95fd99ad60ec08c1614f1a8145327 /static | |
| parent | 893f5e94ce199d4ad2a976805b06d0e95fa45888 (diff) | |
| download | personal-website-37522c3ce749f6582c47e892c935297220e926dc.tar.gz personal-website-37522c3ce749f6582c47e892c935297220e926dc.tar.bz2 personal-website-37522c3ce749f6582c47e892c935297220e926dc.zip | |
Dark theme, migrated blog posts and Netlify stuff
Diffstat (limited to 'static')
| -rw-r--r-- | static/admin/config.yml | 21 | ||||
| -rw-r--r-- | static/admin/index.html | 12 | ||||
| -rw-r--r-- | static/silicon-linux.html | 40 | ||||
| -rw-r--r-- | static/sw.js | 1 |
4 files changed, 74 insertions, 0 deletions
diff --git a/static/admin/config.yml b/static/admin/config.yml new file mode 100644 index 0000000..97288f2 --- /dev/null +++ b/static/admin/config.yml @@ -0,0 +1,21 @@ +backend: + name: git-gateway + branch: master # Branch to update (optional; defaults to master) + + media_folder: assets/img/ + public_folder: /img + + collections: + - name: 'blog' + label: 'Blog' + format: 'md' + folder: 'assets/content/blog' + create: true + slug: '{{year}}-{{month}}-{{day}}-{{slug}}' + editor: + preview: false + fields: + - { label: 'Title', name: 'title', widget: 'string' } + - { label: 'Publish Date', name: 'date', widget: 'datetime' } + - { label: 'Description', name: 'description', widget: 'string' } + - { label: 'Body', name: 'body', widget: 'markdown' }
\ No newline at end of file diff --git a/static/admin/index.html b/static/admin/index.html new file mode 100644 index 0000000..78757e4 --- /dev/null +++ b/static/admin/index.html @@ -0,0 +1,12 @@ +<!doctype html> +<html> +<head> + <meta charset="utf-8" /> + <meta name="viewport" content="width=device-width, initial-scale=1.0" /> + <title>Content Manager</title> +</head> +<body> +<!-- Include the script that builds the page and powers Netlify CMS --> +<script src="https://unpkg.com/netlify-cms@^2.0.0/dist/netlify-cms.js"></script> +</body> +</html>
\ No newline at end of file diff --git a/static/silicon-linux.html b/static/silicon-linux.html new file mode 100644 index 0000000..c82dc45 --- /dev/null +++ b/static/silicon-linux.html @@ -0,0 +1,40 @@ +<html> + +<head> + <title>What happened to Silicon Linux?</title> + <style> + @import url('https://fonts.googleapis.com/css?family=Roboto:400,400i'); + + body { + font-family: 'Roboto', sans-serif; + background-color: #333333; + color: #ffffff; + } + + a { + color: white; + } + </style> +</head> + +<body> +<div style="text-align: center;"> + <h1>Silicon Linux</h1> +</div> +<div style="text-align: center;"> + <h2>Project Status: Dead</h2> +</div> +<p>Hey, if you are visiting this website you might say where is the Silicon Linux website?</p> +<p>Well... We discontinued it due to not much activity and motivation and the only work we have done to it is the + website.</p> +<p>So as the founder of Silicon Linux I had to close the team down and take down the website, so if you're + interested on what's going on in the future. Alee Productions will be my main focus now and Silicon Linux's domain + will + expire in 2 years</p> +<p>If you're interested on what i'm doing now, be sure to join my <a href="https://discord.gg/EFhRDqG">Discord</a> + and also visit my <a href="http://alee14.me">website</a> and I hope I will see you there.</p> +<p>Thanks,</p> +<p>Alee (Founder of Silicon Linux)</p> +</body> + +</html>
\ No newline at end of file diff --git a/static/sw.js b/static/sw.js new file mode 100644 index 0000000..ea69899 --- /dev/null +++ b/static/sw.js @@ -0,0 +1 @@ +// THIS FILE SHOULD NOT BE VERSION CONTROLLED |
