include html ':)

pull/4/head
cblgh 2021-02-03 19:00:40 +01:00
rodzic 273ea3277d
commit 5fadf5b12b
6 zmienionych plików z 108 dodań i 1 usunięć

1
.gitignore vendored
Wyświetl plik

@ -2,7 +2,6 @@
node_modules/
*.vim
*bundle*.js
/html/*.html
*.sw[a-z]
config.conf
config.js

Wyświetl plik

@ -0,0 +1,28 @@
<html lang="en">
<head>
<link href="/links/about.css" rel="stylesheet">
<title>Lieu—webring search engine</title>
</head>
<body>
<a class="about-link" href="/about">About</a>
<main>
<h1><a href="/">Lieu</a></h1>
<h2>the search for the new—endless</h2>
<p>
<span class="lieu">Lieu</span>—an alternative search engine. Created in response to the environs of
apathy concerning the use of hypertext search and discovery. In <span class="lieu">Lieu</span>, the
internet is not what is made searchable, but instead one's own neighbourhood. Put differently,
<span class="lieu">Lieu</span> is a neighbourhood search engine, a way for personal webrings to increase
serendipitous connexions.
</p>
<p>
This instance indexes the <a href="{{.RingLink}}">{{.InstanceName}}</a>—{{ .DomainCount }} domains,
{{ .PageCount }} pages, {{ .TermCount }} search terms.
Some domains of the webring have been filtered out for a better search experience,
see <a href="{{.FilteredLink}}">the filtered list</a>. Visit a <a href="/random">random page</a>.
</p>
<p><span class="lieu">Lieu</span> was created by <a href="https://cblgh.org/support.html">cblgh</a> at the onset of 2021.</p>
<p>For Lieu's AGPL licensed source code, <a href="https://github.com/cblgh/lieu">the repository</a>.</p>
</main>
</body>
</html>

Wyświetl plik

@ -0,0 +1,19 @@
<html lang="en">
<head>
<link href="/links/startpage.css" rel="stylesheet">
<title>Lieu—webring search engine</title>
</head>
<body>
<a class="about-link" href="/about">About</a>
<main>
<div class="lieu-container">
<h1><a href="/">Lieu</a></h1>
<h2>the search for the new—endless</h2>
<form class="search-container">
<input name="q" placeholder="tracking" value="{{ .Query }}" class="search-box">
<button type="submit" class="search-button">👁</button>
</form>
</div>
</main>
</body>
</html>

Wyświetl plik

@ -0,0 +1,20 @@
<html lang="en">
<head>
<link href="/links/search.css" rel="stylesheet">
<title>{{ .Title }}—Lieu</title>
</head>
<body>
<a class="about-link" href="/about">About</a>
<h1><a href="/">Lieu</a></h1>
<h2>{{ .Title }}</h2>
<main>
<ul>
{{ range .URLs }}
<li>
<a class="link" href="{{ .URL }}">{{ .Title }}</a>
</li>
{{ end }}
</ul>
</main>
</body>
</html>

Wyświetl plik

@ -0,0 +1,22 @@
<html lang="en">
<head>
<link href="/links/search.css" rel="stylesheet">
<title>{{ .Query }}—Lieu</title>
</head>
<body>
<a class="about-link" href="/about">About</a>
<h1><a href="/">Lieu</a></h1>
<form method="GET" class="search-container">
<input name="q" value="{{ .Query }}" class="search-box">
<button type="submit" class="search-button">👁</button>
</form>
<main>
{{ range .Pages }}
<div class="entry">
<a class="link" href="{{ .URL }}">{{ .Title }}</a>
<p>{{ .About }}</p>
</div>
{{ end }}
</main>
</body>
</html>

Wyświetl plik

@ -0,0 +1,19 @@
<html lang="en">
<head>
<link href="/links/style.css" rel="stylesheet">
<title>indexed domains—Lieu</title>
</head>
<body>
<h1>Lieu</h1>
<a class="about-link" href="/about">About</a>
<main>
{{ range .Domains }}
<div class="entry">
<a class="link" href="{{ .URL }}">{{ .Title }}</a>
<p>{{ .About }}</p>
</div>
{{ end }}
</main>
</body>
</html>