generated from Seekra/repository-template
Compare commits
29
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
450fb33c0f | ||
|
|
7467a80bb6
|
||
|
|
5333cc9a97 | ||
|
|
920e71d1a2
|
||
|
|
db404a389b
|
||
|
|
0f20b52aa9
|
||
|
|
ab37ca4137
|
||
|
|
5d3278fdb1 | ||
|
|
02ee937ac9 | ||
|
|
c93215e241 | ||
|
|
83be71821f | ||
|
|
b564a5146e | ||
|
|
f2b46c96de | ||
|
|
14d219ce8a
|
||
|
|
49948899b1 | ||
|
|
23b2f78093 | ||
|
|
d27d66c6e4 | ||
|
|
6e6e9cb1bc
|
||
|
|
a79976036a
|
||
|
|
36d584f238 | ||
|
|
80ca6dcb5d | ||
|
|
467b85b524 | ||
|
|
0eb74a78d3 | ||
|
|
3b3614bd62
|
||
|
|
1fd1fbba57
|
||
|
|
cebf33fb47 | ||
|
|
3fad06f9b5
|
||
|
|
47634f017e | ||
|
|
d4772dd35b
|
@@ -1,3 +1,3 @@
|
||||
# repository-template
|
||||
# frontend
|
||||
|
||||
The template for repositories
|
||||
The frontend of the search engine Seekra.
|
||||
@@ -0,0 +1,50 @@
|
||||
<!DOCTYPE html>
|
||||
<!--
|
||||
Copyright 2026 Seekra
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<html lang="en-US">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<meta name="description" content="The Seekra search engine">
|
||||
<title>Seekra</title>
|
||||
<link rel="stylesheet" href="static/css/main.css" />
|
||||
<link rel="stylesheet" href="static/css/nav/navbar/navbar.css" />
|
||||
</head>
|
||||
<body>
|
||||
<nav class="global-nav">
|
||||
<ul>
|
||||
<li class="nav-item">
|
||||
Seekra
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
|
||||
<header>
|
||||
<h1>Seekra</h1>
|
||||
<p>
|
||||
Built to search.
|
||||
</p>
|
||||
</header>
|
||||
|
||||
<form>
|
||||
<input type="search" name="search" placeholder="Search..." required />
|
||||
<button type="submit">Search</button>
|
||||
</form>
|
||||
<footer>
|
||||
<p>© 2026 Seekra.</p>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,31 @@
|
||||
body {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
header {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
header h1 {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
form {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
margin-top: 20px;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
form button{
|
||||
margin-left: 10px;
|
||||
}
|
||||
|
||||
form input{
|
||||
width: 80%;
|
||||
}
|
||||
|
||||
footer{
|
||||
text-align: center;
|
||||
margin-top: 20px;
|
||||
}
|
||||
@@ -0,0 +1,23 @@
|
||||
.global-nav {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
padding: 10px 0;
|
||||
border-bottom: 1px solid #000000;
|
||||
}
|
||||
|
||||
.global-nav ul {
|
||||
display: flex;
|
||||
list-style: none;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
gap: 30px;
|
||||
}
|
||||
|
||||
.nav-item a {
|
||||
text-decoration: none;
|
||||
color: black;
|
||||
}
|
||||
|
||||
.nav-item a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
Reference in New Issue
Block a user