diff options
| author | Jacob McDonnell <jacob@jacobmcdonnell.com> | 2026-04-25 20:10:07 -0400 |
|---|---|---|
| committer | Jacob McDonnell <jacob@jacobmcdonnell.com> | 2026-04-25 20:10:07 -0400 |
| commit | 41039b36ec75467076ada2bb0f6f7866eafaea09 (patch) | |
| tree | fb5733c9cd64c7aa8f3014193cb17011b0dfbbf5 /templates/template.html | |
| parent | 1f19f33e45791ea59aed048796fc68672c6723a5 (diff) | |
feat: Main Page to search for man pages
Added a main index page that uses HTMX to search for man pages and
place the contents on the page.
Diffstat (limited to 'templates/template.html')
| -rwxr-xr-x | templates/template.html | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/templates/template.html b/templates/template.html index 2103cfac..b2d1ad05 100755 --- a/templates/template.html +++ b/templates/template.html @@ -8,24 +8,21 @@ Feel free to look around, you might find something interesting."/> <meta name="author" content="Jacob McDonnell"/> <meta name="keywords" content="Jacob,McDonnell,Jacob McDonnell,jacob,mcdonnell,jacob mcdonnell"/> - <title>Jacob McDonnell</title> + <title>Man Pages</title> <link href="/css/main.css" rel="stylesheet" type="text/css"> <link rel="icon" type="image/png" sizes="48x48" href="/logos/favicon.png"> <link rel="icon" type="image/png" sizes="32x32" href="/logos/favicon32.png"> <link rel="icon" type="image/png" sizes="16x16" href="/logos/favicon16.png"> + <script src="/htmx.min.js"></script> </head> <body> <ul class="topBar"> <li class="topLink"><a href="/">home</a></li> <li class="topLink"><a href="https://codeberg.org/JacobMcDonnell">codeberg</a></li> <li class="topLink"><a href="https://gist.github.com/JacobMcDonnell/">gists</a></li> - <!--<li class="topLink"><a href="/articles">articles</a></li>--> </ul> <div class="main"> {{.}} </div> - <footer class="LicenseFooter"> - <p>The content for this site is <a href="https://creativecommons.org/licenses/by-nc-sa/4.0/">CC BY-NC-SA 4.0</a>. The <a href="https://codeberg.org/JacobMcDonnell/JacobMcDonnell.com">code</a> for this site is <a href="https://opensource.org/license/MIT">MIT</a>.</p> - </footer> </body> </html> |
