fixed favicon, updated image gallery

This commit is contained in:
partisan 2024-09-03 20:12:33 +02:00
parent c81dd751e9
commit a77f93842a
18 changed files with 5485 additions and 5453 deletions

View file

@ -6,9 +6,13 @@
<strong>Spitfire Browser Website</strong> <strong>Spitfire Browser Website</strong>
</p> </p>
Unlike some other browser sites flexing with their 98.8% TypeScript (yikes), i keep it cool with minimal JavaScript just enough to get the job done, no extra BS. <p align="center">
Unlike some other browser sites flexing with their 98.8% TypeScript (yikes), i keep it cool with minimal JavaScript just enough to get the job done.
</p>
Spitfire Browser's website is built without Next.js, TypeScript, and Tailwind CSS or any other bullshit. <p align="center">
Spitfire Browser's website is built without Next.js, TypeScript, and Tailwind CSS or any other BS.
</p>
## TO-DO: ## TO-DO:
@ -39,9 +43,10 @@ Vivamus luctus egestas leo. Phasellus faucibus molestie nisl. Etiam commodo dui
... ...
``` ```
### Based on: ### Based on HTML template:
[Stellar](https://html5up.net/stellar) by HTML5 UP
Stellar by HTML5 UP
html5up.net | @ajlkn html5up.net | @ajlkn
### Licence: ### Licence:

2
go.mod
View file

@ -1,4 +1,4 @@
module my-web module spitfire-browser-website
go 1.18 go 1.18

View file

@ -33,6 +33,11 @@ const (
discordWebhookURL = "YOUR_DISCORD_WEBHOOK_URL" discordWebhookURL = "YOUR_DISCORD_WEBHOOK_URL"
) )
/*
Spitfire Browser by Internet Addict (https://spitfirebrowser.com)
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
*/
type Blog struct { type Blog struct {
Name string Name string
Entries []BlogEntry Entries []BlogEntry

21
run.bat Normal file
View file

@ -0,0 +1,21 @@
@echo off
REM Default values
set PORT=8080
REM Parse command-line arguments
:parse_args
if "%~1"=="" goto run_app
if "%~1"=="-p" (
set PORT=%~2
shift
shift
goto parse_args
) else (
echo Unknown parameter passed: %~1
exit /b 1
)
:run_app
REM Run the Go application with the parsed flags
go run discord.go rss.go telegram.go save.go main.go -p=%PORT%

View file

@ -11,6 +11,7 @@
display: block; display: block;
width: 100%; width: 100%;
height: auto; height: auto;
border: 1px solid #dddddd3d;
} }
/* Slick carousel specific styles */ /* Slick carousel specific styles */
@ -31,11 +32,11 @@
} }
.slick-prev { .slick-prev {
left: -50px; /* Position to the left of the carousel */ left: 0px;
} }
.slick-next { .slick-next {
right: -50px; /* Position to the right of the carousel */ right: 0px;
} }
/* Center the dots under the image */ /* Center the dots under the image */

Binary file not shown.

Before

Width:  |  Height:  |  Size: 20 KiB

View file

@ -5,8 +5,8 @@
@import 'assets/webfonts/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwlxdu.woff2'; @import 'assets/webfonts/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwlxdu.woff2';
/* /*
Stellar by HTML5 UP Spitfire Browser by Internet Addict (https://weforgecode.xyz/Spitfire/Website)
html5up.net | @ajlkn Based on Stellar by HTML5 UP | @ajlkn
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license) Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
*/ */

BIN
static/images/favicon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 81 KiB

View file

@ -1,6 +1,6 @@
/* /*
Stellar by HTML5 UP Spitfire Browser by Internet Addict (https://weforgecode.xyz/Spitfire/Website)
html5up.net | @ajlkn Based on Stellar by HTML5 UP | @ajlkn
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license) Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
*/ */

View file

@ -1,7 +1,7 @@
/// ///
/// Stellar by HTML5 UP // Spitfire Browser by Internet Addict (https://weforgecode.xyz/Spitfire/Website)
/// html5up.net | @ajlkn // Based on Stellar by HTML5 UP | @ajlkn
/// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license) // Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
/// ///
/* Icons */ /* Icons */

View file

@ -1,17 +1,17 @@
<!DOCTYPE HTML> <!DOCTYPE HTML>
<!-- <!--
Stellar by HTML5 UP Spitfire Browser by Internet Addict (https://weforgecode.xyz/Spitfire/Website)
html5up.net | @ajlkn Based on Stellar by HTML5 UP | @ajlkn
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license) Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
--> -->
<html> <html>
<head> <head>
<link rel="icon" type="image/png" href="favicon.png"> <link rel="icon" type="image/png" href="static/images/favicon.png">
<title>Spitfire Browser - Downloads</title> <title>Spitfire Browser - Downloads</title>
<meta content="🌐 Spitfire Browser" property="og:title" /> <meta content="🌐 Spitfire Browser" property="og:title" />
<meta content="Privacy respecting user friendly web browser." property="og:description" /> <meta content="Privacy respecting user friendly web browser." property="og:description" />
<meta content="https://spitfirebrowser.com/" property="og:url" /> <meta content="https://spitfirebrowser.com/" property="og:url" />
<meta content="https://spitfirebrowser.com/favicon.png" property="og:image" /> <meta content="https://spitfirebrowser.com/static/images/favicon.png" property="og:image" />
<meta content="#f1f1f1" data-react-helmet="true" name="theme-color" /> <meta content="#f1f1f1" data-react-helmet="true" name="theme-color" />
<meta name="darkreader-lock"> <meta name="darkreader-lock">

View file

@ -1,17 +1,17 @@
<!DOCTYPE HTML> <!DOCTYPE HTML>
<!-- <!--
Stellar by HTML5 UP Spitfire Browser by Internet Addict (https://weforgecode.xyz/Spitfire/Website)
html5up.net | @ajlkn Based on Stellar by HTML5 UP | @ajlkn
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license) Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
--> -->
<html> <html>
<head> <head>
<link rel="icon" type="image/png" href="favicon.png"> <link rel="icon" type="image/png" href="static/images/favicon.png">
<title>Spitfire Browser - Downloads</title> <title>Spitfire Browser - Downloads</title>
<meta content="🌐 Spitfire Browser" property="og:title" /> <meta content="🌐 Spitfire Browser" property="og:title" />
<meta content="Privacy respecting user friendly web browser." property="og:description" /> <meta content="Privacy respecting user friendly web browser." property="og:description" />
<meta content="https://spitfirebrowser.com/" property="og:url" /> <meta content="https://spitfirebrowser.com/" property="og:url" />
<meta content="https://spitfirebrowser.com/favicon.png" property="og:image" /> <meta content="https://spitfirebrowser.com/static/images/favicon.png" property="og:image" />
<meta content="#f1f1f1" data-react-helmet="true" name="theme-color" /> <meta content="#f1f1f1" data-react-helmet="true" name="theme-color" />
<meta name="darkreader-lock"> <meta name="darkreader-lock">

View file

@ -1,17 +1,17 @@
<!DOCTYPE HTML> <!DOCTYPE HTML>
<!-- <!--
Spitfire Browser by Internet Addict Spitfire Browser by Internet Addict (https://weforgecode.xyz/Spitfire/Website)
Based on Stellar by HTML5 UP Based on Stellar by HTML5 UP | @ajlkn
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license) Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
--> -->
<html> <html>
<head> <head>
<link rel="icon" type="image/png" href="favicon.png"> <link rel="icon" type="image/png" href="static/images/favicon.png">
<title>Spitfire Browser - Fast. Secure. Elegant.</title> <title>Spitfire Browser - Fast. Secure. Elegant.</title>
<meta content="🌐 Spitfire Browser" property="og:title" /> <meta content="🌐 Spitfire Browser" property="og:title" />
<meta content="Privacy respecting user friendly web browser." property="og:description" /> <meta content="Privacy respecting user friendly web browser." property="og:description" />
<meta content="https://spitfirebrowser.com/" property="og:url" /> <meta content="https://spitfirebrowser.com/" property="og:url" />
<meta content="https://spitfirebrowser.com/favicon.png" property="og:image" /> <meta content="https://spitfirebrowser.com/static/images/favicon.png" property="og:image" />
<meta content="#f1f1f1" data-react-helmet="true" name="theme-color" /> <meta content="#f1f1f1" data-react-helmet="true" name="theme-color" />
<meta name="darkreader-lock"> <meta name="darkreader-lock">

View file

@ -1,17 +1,17 @@
<!DOCTYPE HTML> <!DOCTYPE HTML>
<!-- <!--
Stellar by HTML5 UP Spitfire Browser by Internet Addict (https://weforgecode.xyz/Spitfire/Website)
html5up.net | @ajlkn Based on Stellar by HTML5 UP | @ajlkn
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license) Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
--> -->
<html> <html>
<head> <head>
<link rel="icon" type="image/png" href="favicon.png"> <link rel="icon" type="image/png" href="static/images/favicon.png">
<title>{{.Title}}</title> <title>{{.Title}}</title>
<meta content="🌐 {{.Title}}" property="og:title" /> <meta content="🌐 {{.Title}}" property="og:title" />
<meta content="Privacy respecting user friendly web browser." property="og:description" /> <meta content="Privacy respecting user friendly web browser." property="og:description" />
<meta content="https://spitfirebrowser.com/" property="og:url" /> <meta content="https://spitfirebrowser.com/" property="og:url" />
<meta content="https://spitfirebrowser.com/favicon.png" property="og:image" /> <meta content="https://spitfirebrowser.com/static/images/favicon.png" property="og:image" />
<meta content="#f1f1f1" data-react-helmet="true" name="theme-color" /> <meta content="#f1f1f1" data-react-helmet="true" name="theme-color" />
<meta name="darkreader-lock"> <meta name="darkreader-lock">