Pi66

git.pi66.xyz
A web interface for the pi66.xyz Git server
git clone https://git.pi66.xyz/git.pi66.xyz

src/templates/partials/head.html

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
<!DOCTYPE html>
<html lang="en">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <meta name="description" content="{{ metadata_content | default('A web interface for the pi66.xyz Git server') }}">
        <meta name="author" content="Pi66">
        <meta name="theme-color" content="#000000">
        <title>{{page_title | default('Pixel - Git')}}</title>
        <link rel="icon" href="/static/favicon.ico">
        <link rel="stylesheet" href="/static/css/style.css"/>
        <script src="https://cdn.jsdelivr.net/npm/@tailwindcss/browser"></script>
{% if extra_head is defined %}{{ extra_head }}{% endif %}

    </head>