Add files via upload

This commit is contained in:
Alexander David Frick 2022-05-26 16:03:27 -05:00 committed by GitHub
parent 8bec911992
commit 63532bdb38
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
22 changed files with 215 additions and 0 deletions

7
website/README.md Normal file
View file

@ -0,0 +1,7 @@
# https://thorium.rocks/ Source
## Thorium Website Source
This is the source code for the new Thorium Browser Website.
Kudos to @midzer

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 26 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.7 KiB

View file

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<browserconfig>
<msapplication>
<tile>
<square150x150logo src="/mstile-150x150.png"/>
<TileColor>#24292f</TileColor>
</tile>
</msapplication>
</browserconfig>

BIN
website/favicon-16x16.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 979 B

BIN
website/favicon-32x32.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

BIN
website/favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

38
website/humans.txt Normal file
View file

@ -0,0 +1,38 @@
## thorium.rocks humans.txt ##
# Copyright (c) 2022 Alex313031.
# https://humanstxt.org/
/* TEAM */
Web designer & Contributer: midzer
GitHub: @midzer
From: Munich, Germany
Developer: Alexander Frick
Twitter: @alex313031
From: Oklahoma, US
Contributer: gz83
GitHub: @gz83
From: Hong Kong, China
/* THANKS */
Robert Richard
GitHub: @RobRich999
From: US
Jerry
Website: https://chromium.woolyss.com/
From:
The Chromium Authors
Website: https://www.chromium.org/
From: WorldWide
/* SITE */
Last update: 2022/05/26
Language: English
Doctype: HTML5
IDE: VSCodium, Geany, Atom

Binary file not shown.

After

Width:  |  Height:  |  Size: 28 KiB

1
website/imgs/thorium.svg Normal file
View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" height="512" width="512" viewBox="-10 -10 276 276"><circle cx="128" cy="128" r="64" fill="#000000"/><path fill="#669df6" d="M96 183.4A63.7 63.7 0 0 1 72.6 160L17.2 64A128 128 0 0 0 128 256l55.4-96A64 64 0 0 1 96 183.4Z"/><path fill="#aecbfa" d="M192 128a63.7 63.7 0 0 1-8.6 32L128 256A128 128 0 0 0 238.9 64h-111a64 64 0 0 1 64 64Z"/><circle cx="128" cy="128" r="52" fill="#1a73e8"/><path fill="#1967d2" d="M96 72.6a63.7 63.7 0 0 1 32-8.6h110.8a128 128 0 0 0-221.7 0l55.5 96A64 64 0 0 1 96 72.6Z"/></svg>

After

Width:  |  Height:  |  Size: 545 B

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width=" 192" height=" 192" fill-rule="evenodd" class="vector-svg"><path fill="gray" stroke="gray" stroke-width="0px" stroke-linecap="round" shape-rendering="geometricPrecision" d="M 172 60 m -12 0 a 12 12 0 1 0 24 0 a 12 12 0 1 0 -24 0" style="fill: #aecbfa; stroke: #aecbfa;"/><path fill="gray" stroke="gray" stroke-width="0px" stroke-linecap="round" shape-rendering="geometricPrecision" d="M 136 88 m -24 0 a 24 24 0 1 0 48 0 a 24 24 0 1 0 -48 0" style="fill: #000000; stroke: #000000;"/><path fill="gray" stroke="gray" stroke-width="0px" stroke-linecap="round" shape-rendering="geometricPrecision" d="M 136 148 m -28 0 a 28 28 0 1 0 56 0 a 28 28 0 1 0 -56 0" style="fill: #669df6; stroke: #669df6;"/><path fill="gray" stroke="gray" stroke-width="0px" stroke-linecap="round" shape-rendering="geometricPrecision" d="M 56 64 m -48 0 a 48 48 0 1 0 96 0 a 48 48 0 1 0 -96 0" style="fill: #1967d2; stroke: #1967d2;"/></svg>

After

Width:  |  Height:  |  Size: 961 B

108
website/index.html Normal file
View file

@ -0,0 +1,108 @@
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Thorium</title>
<meta name="description" content="Chromium fork for Linux named after radioactive element No. 90.">
<meta name="color-scheme" content="light dark">
<link rel="author" href="https://thorium.rocks/humans.txt">
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5">
<meta name="msapplication-TileColor" content="#24292f">
<meta name="theme-color" content="#ffffff">
<style>
:root,
:root.light {
--bgcolor: #ffffff;
--fontcolor: #24292f;
--linkcolor: #0000ee;
--visitedcolor: #551a8b;
}
@media (prefers-color-scheme: dark) {
:root {
--bgcolor: #24292f;
--fontcolor: #ffffff;
--linkcolor: #5bf5bf;
--visitedcolor: #ae5ee0;
}
}
:root.dark {
--bgcolor: #24292f;
--fontcolor: #ffffff;
--linkcolor: #5bf5bf;
--visitedcolor: #ae5ee0;
}
html {
overflow-y: scroll;
}
body {
margin: 1em auto;
max-width: 32em;
font-family: sans-serif;
padding: 1rem;
color: var(--fontcolor);
background-color: var(--bgcolor);
}
img {
max-width: 100%;
height: auto;
}
a:link{
color: var(--linkcolor);
}
a:visited,
a:active {
color: var(--visitedcolor);
}
</style>
<script>
function toggleDarkMode(useDark) {
if (useDark) {
document.documentElement.classList.add('dark');
document.documentElement.classList.remove('light');
}
else {
document.documentElement.classList.remove('dark');
document.documentElement.classList.add('light');
}
}
let useDark = window.matchMedia('(prefers-color-scheme: dark)').matches;
if (!useDark && localStorage.getItem('dark-mode') === 'true') {
useDark = true;
toggleDarkMode(useDark);
}
else if (localStorage.getItem('dark-mode') === 'false') {
useDark = false;
toggleDarkMode(useDark);
}
</script>
</head>
<body>
<img src="imgs/thorium.svg" width="512" height="512" alt="Thorium Logo">
<h1>Thorium -<br><small>The fastest browser on earth.</small></h1>
<hr style="height:1px">
<p>Chromium fork for Linux, MacOS, Raspberry Pi, and Windows named after radioactive element No. 90.</p>
<p><b>Website under construction</b>. Meanwhile, you can check out the main <a rel="noopener" href="https://github.com/Alex313031/Thorium">repository</a>, read the <a rel="noopener" href="https://alex313031.blogspot.com/">developer blog,</a> or download releases for:</p>
<ul>
<li><a rel="noopener" href="https://github.com/Alex313031/Thorium/releases">Linux</a></li>
<li><a rel="noopener" href="https://github.com/Alex313031/Thorium-Special/releases">MacOS (ARM and x64)</a></li>
<li><a rel="noopener" href="https://github.com/Alex313031/Thorium-Special/releases">Raspberry Pi</a></li>
<li><a rel="noopener" href="https://github.com/Alex313031/Thorium-Win/releases">Windows</a></li>
<li><a rel="noopener" href="https://github.com/Alex313031/Thorium-AVX2/releases">Windows AVX2</a></li>
</ul>
<button>Toggle Dark/Light Mode</button>
<script>
document.querySelector('button').onclick = function() {
useDark = !useDark;
toggleDarkMode(useDark);
localStorage.setItem('dark-mode', useDark);
}
</script>
</body>
</html>

BIN
website/mstile-144x144.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.9 KiB

BIN
website/mstile-150x150.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.7 KiB

BIN
website/mstile-310x150.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.3 KiB

BIN
website/mstile-310x310.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

BIN
website/mstile-70x70.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.8 KiB

4
website/robots.txt Normal file
View file

@ -0,0 +1,4 @@
User-agent: *
Allow: /
Sitemap: https://thorium.rocks/sitemap.xml

View file

@ -0,0 +1,27 @@
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
<svg version="1.0" xmlns="http://www.w3.org/2000/svg"
width="700.000000pt" height="700.000000pt" viewBox="0 0 700.000000 700.000000"
preserveAspectRatio="xMidYMid meet">
<metadata>
Created by potrace 1.14, written by Peter Selinger 2001-2017
</metadata>
<g transform="translate(0.000000,700.000000) scale(0.100000,-0.100000)"
fill="#000000" stroke="none">
<path d="M3330 6743 c-55 -4 -252 -24 -290 -29 -58 -8 -293 -54 -325 -64 -16
-5 -41 -11 -55 -14 -38 -7 -285 -89 -375 -126 -607 -243 -1127 -669 -1494
-1222 -122 -184 -244 -422 -321 -628 -89 -236 -162 -522 -185 -725 -4 -33 -9
-67 -10 -76 -23 -119 -23 -582 -1 -719 2 -14 7 -47 11 -75 5 -42 34 -203 49
-280 51 -250 183 -596 329 -860 47 -84 212 -344 227 -355 3 -3 28 -34 55 -70
27 -36 56 -72 64 -81 9 -9 42 -46 73 -81 202 -228 472 -454 723 -605 459 -277
939 -431 1465 -470 225 -17 583 -1 755 33 11 2 34 6 50 9 204 35 424 99 643
187 161 65 431 200 440 221 2 4 8 7 14 7 13 0 186 115 294 196 605 456 1042
1142 1207 1894 24 108 29 137 43 243 3 23 7 56 9 72 27 194 25 617 -5 795 -5
30 -11 73 -14 95 -7 49 -14 92 -22 125 -3 14 -8 36 -10 50 -3 14 -9 39 -14 55
-5 17 -11 41 -14 55 -14 76 -111 367 -158 475 -42 95 -146 300 -172 338 -14
21 -26 40 -26 43 0 3 -26 45 -57 92 -32 48 -60 92 -63 97 -16 33 -199 263
-270 339 -184 200 -481 451 -652 551 -9 6 -48 29 -86 52 -278 170 -631 310
-962 382 -104 23 -110 24 -255 45 -170 25 -468 39 -615 29z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

19
website/site.webmanifest Normal file
View file

@ -0,0 +1,19 @@
{
"name": "Thorium",
"short_name": "Thorium",
"icons": [
{
"src": "/android-chrome-192x192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "/android-chrome-512x512.png",
"sizes": "512x512",
"type": "image/png"
}
],
"theme_color": "#ffffff",
"background_color": "#ffffff",
"display": "standalone"
}

1
website/sitemap.xml Normal file
View file

@ -0,0 +1 @@
<?xml version="1.0" encoding="UTF-8"?><?xml-stylesheet type="text/xml" href="//thorium.rocks/sitemap.xml"?>