the repository which powers this website
Diffstat (limited to 'themed/base.html')
-rw-r--r--themed/base.html13
1 files changed, 12 insertions, 1 deletions
diff --git a/themed/base.html b/themed/base.html
index 06569739..ff8d3473 100644
--- a/themed/base.html
+++ b/themed/base.html
@@ -1,6 +1,6 @@
{! static int get_num_commits(void); static int get_num_branches(void); static int get_num_tags(void); static void short_commit_id(char *hex); !}
-{% block page_start %}
+{% block page_start(const char* title, const char* description) %}
<!DOCTYPE html>
<html>
<head>
@@ -12,6 +12,13 @@
{! cgit_shared_emit_css_link(NULL, "/themed.css"); !}
{% endif %}
+ <meta property="og:site_name" content="git.bendn.org: github but worser, and prettier">
+ <meta content="{{ title|attr }}" property="og:title" />
+ <meta content="{{ description|attr }}" property="og:description" />
+ <meta content="https://git.bendn.org/" property="og:url" />
+ <meta content="https://git.bendn.org/icons/cgit.png" property="og:image" />
+ <meta content="#1dffd5" data-react-helmet="true" name="theme-color" />
+
<link rel='shortcut icon' href='/favicon.ico'>
</head>
<body class="bg-[#1F2430] text-[#CCCAC2]">
@@ -146,6 +153,10 @@
at
{{ show_date(time(NULL), 0, cgit_date_mode(DATE_ISO8601)) }}
</div>
+ <div class="text-sm text-[#CCCAC2]">
+ problem? patch? question? complaint?
+ email bend dot n on outlook
+ </div>
</div>
</footer>
</body>