diff options
| author | Adam Spragg <adam@spra.gg> | 2018-06-06 17:12:03 +0100 | 
|---|---|---|
| committer | Adam Spragg <adam@spra.gg> | 2018-06-06 17:12:03 +0100 | 
| commit | 47e000d2354cc23ba530f3012a35a4b671fe0f32 (patch) | |
| tree | 27b812773292c8491dc63f61a782a1a530d76f35 /html/about | |
| parent | bfc50f836e36128a00f1de37528e6be7d74a52da (diff) | |
Add icons to the website sub-headings
Also add an /about page with licensing info for the icons, as well as
links to their sources, and other random trivia and nerdery.
Diffstat (limited to 'html/about')
| -rw-r--r-- | html/about | 88 | 
1 files changed, 88 insertions, 0 deletions
| diff --git a/html/about b/html/about new file mode 100644 index 0000000..acf66aa --- /dev/null +++ b/html/about @@ -0,0 +1,88 @@ +<!DOCTYPE html> +<html lang="en"> +	<head> +		<title>Spragg Software Services Ltd.</title> +		<link rel="stylesheet" href="/style/main.css" /> +	</head> +	<body> +		<header> +			<h1>About</h1> +			<nav> +				<ul> +					<li><a href="/">Home</a></li> +					<li><a href="/projects">Projects</a></li> +					<li><a href="/blog">Blog</a></li> +					<li><a href="/privacy">Privacy</a></li> +					<li><a href="/contact">Contact</a></li> +					<!--li class="selected"><a href="/about">About</a></li--> +				</ul> +			</nav> +		</header> +		<main> +			<h2><img src="/img/icons/Faenza/mimetypes/32/text-x-copying.png" alt="©" /> 3rd party resources</h2> + +			<p>First up, as well as whatever other web apps I end up putting in various places on the site, +				up front I should point out that the icons I use on the main site are from the +				<a href="https://www.gnome-look.org/content/show.php/Faenza?content=128143">Faenza</a> +				and <a href="https://techbase.kde.org/Projects/Oxygen">Oxygen</a> icon sets, and +				redistributed under the terms of the +				<a href="https://www.gnu.org/licenses/gpl-3.0.en.html">GPL 3</a> (Faenza) and +				<a href="https://www.gnu.org/licenses/lgpl-3.0.en.html">LGPL 3</a> (Oxygen) +				respectively. +				As well as linking to the project websites themselves, as required by their licences I am +				providing the source tarballs that I have been provided by my upstream (Debian) for download +				from this site, at <a href="/src">/src</a>.</p> + +			<p>Also, the Netscape logo on this page is taken from +				<a href="https://en.wikipedia.org/wiki/File:Netscape_icon.svg">Wikipedia's File:Netscape_icon.svg</a> +				page, which claims: +				<q>This image only consists of simple geometric shapes or text. +					It does not meet the threshold of originality needed for copyright protection, +					and is therefore in the public domain.</q> +				The WhatWG logo was taken from +				<a href="https://resources.whatwg.org/">https://resources.whatwg.org/</a> and +				<a href="https://resources.whatwg.org/README.md">is licensed</a> under the +				<a href="http://creativecommons.org/publicdomain/zero/1.0/">CC-0</a> license. +				The Neovim logo was taken from the +				<a href="https://neovim.io/logos/neovim-logos.zip">Neovim-logos.zip</a> download on the +				<a href="https://neovim.io/">Neovim home page</a> and is licensed under the +				<a href="https://creativecommons.org/licenses/by/3.0/">CC-BY-3.0</a> license.</p> + +			<h2><img src="/img/icons/Faenza/categories/32/gnome-control-center.png" alt="•" /> Retro chic nerdery</h2> + +			<p>This site is (or should be) +				<a href="https://checker.html5.org/?doc=https%3A%2F%2Fspragg-ssl.co.uk%2Fabout"><img +					src="/img/whatwg-logo.svg" alt="?⃝" class="inline-icon" /> valid HTML</a> +				(aka <a href="https://html.spec.whatwg.org/multipage/introduction.html#is-this-html5?">HTML 5</a> +				(see <a href="https://blog.whatwg.org/html-is-the-new-html5">rationale</a>)).</p> + +			<p>This site was written with +				<a href="https://neovim.io/"><img src="/img/neovim-mark.svg" alt="N" class="inline-icon" /> Neovim</a>.</p> + +			<p>This site best viewed in +				<a href="https://web.archive.org/web/19970612060321/http://www66.netscape.com:80/comprod/products/communicator/navigator.html"><img +					src="/img/Netscape_icon.svg" alt="N" +					class="inline-icon" /> Netscape Navigator 4</a> or higher, on a +				1024×768×256-color display (or better). +				(Seriously though, use an +				<a href="https://www.techopedia.com/definition/31094/evergreen-browser">evergreen browser</a>. +				If your browser doesn't have regular - preferably automatic - security updates, you're +				leaving your data and privacy super vulnerable to +				<a href="http://www.catb.org/jargon/html/C/cracker.html">crackers</a>.)</p> + +			<p>Huh. +				It seems like the idea of +				<a href="https://en.wikipedia.org/wiki/Web_badge">web badges</a> disappeared off the +				face of the internet. +				It's not just that no-one still uses them, but I can't find any sites that collect them, +				not even for archival or nostalgic purposes. +				If there are any such sites out there, I'd be interested in knowing about them.</p> +		</main> +		<footer> +			<hr /> +			<p>Spragg Software Services Ltd is registered in England, No. 11248242. +				Registered office: 82 Upper Hanover Street, Sheffield, S3 7RQ. +				VAT reg No. 295343283.</p> +		</footer> +	</body> +</html> | 
