initial commit

This commit is contained in:
2024-01-13 00:27:56 -06:00
parent 6d3a276bf0
commit 98efa97678
18 changed files with 1392 additions and 0 deletions

41
assets/html/css/style.css Normal file
View File

@@ -0,0 +1,41 @@
body {
background-color: #ffffff;
color: #000000;
font-size:14pt;
line-height:1.5em;
font-family:"Myriad Pro", "Trebuchet MS", Helvetica, sans-serif;
width: 44em;
margin:4ex 0 12ex 5%;
}
.fire {
font-size: 40pt;
color: #ff0000;
}
.always {
font-size: 25pt;
color: #0000ff;
}
.safe {
font-size: 40pt;
color: #00af00;
}
P.little {
line-height:1em;
font-size: 35pt;
color: #f97b04;
}
small {
font-size: 10pt;
}
A:link {
color: #aa0000;
}
A:visited {
color: #606060;
}
A:active {
color: #ffffff;
}
img.c1 {
border:0;width:88px;height:31px
}

49
assets/html/index.tplt Normal file
View File

@@ -0,0 +1,49 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<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">
<title>Is The Internet On Fire?</title>
<style>
{{ template "style.css" . }}
</style>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link rel="shortcut icon" href="/favicon.ico">
<title>Is The Internet On Fire?</title>
</head>
<body style="text-align:center;">
<small>
[<a href="status.txt">txt</a>]&nbsp;<tt>dig +short txt istheinternetonfire.app</tt>&nbsp;[<a href="status.json">json</a>]
</small>
<hr align="CENTER" noshade="noshade" size="2" width="100%">
<!-- 2022-11-02 -->
{{- if gt (len .CVEs) 0 }}
<P>
<span class="fire">Yes!</span><br>
<span class="always">It's always something.</span><br>
</P>
<div><span class="latest">What's Burning?</span></div>
{{- range .CVEs }}
<a href="//nvd.nist.gov/vuln/detail/{{ .CveID | ToUpper }}">{{ .CveID | ToUpper }}</a> - {{ .Product }} - {{ .ShortDescription }}<br>
{{- end }}
{{ else }}
<P>
<span class="safe">Nope!</span><br>
</P>
{{- end }}
<hr align="CENTER" noshade="noshade" size="2" width="100%">
<small>
Inspiration for this site was taken directly from <a href="//istheinternetonfire.com">istheinternetonfire.com</a> by <a href="//twitter.com/jschauma">@jschauma</a>.
<br>
Updated by <a href="//mastodon.c.smoothnet.org/@nhyatt">@nhyatt</a>.
<br>
Source located on <a href="//gitea.smoothnet.org/nhyatt/istheinternetonfire">GiTea</a>
</small>
</body>
</html>