generated from nathanwoodburn/python-webserver-template
feat: Add new OG images
This commit is contained in:
@@ -836,3 +836,7 @@ a:hover {
|
||||
.tx-item {
|
||||
animation: staggerFade 0.4s ease forwards;
|
||||
}
|
||||
|
||||
small {
|
||||
color: var(--text-secondary);
|
||||
}
|
||||
@@ -4,30 +4,30 @@
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Fire Explorer</title>
|
||||
<title>{{ meta_title or 'Fire Explorer' }}</title>
|
||||
<link rel="icon" href="/assets/img/favicon.png" type="image/png">
|
||||
<link rel="stylesheet" href="/assets/css/index.css">
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap" rel="stylesheet">
|
||||
<meta name="description" content="A hot new Handshake Blockchain Explorer">
|
||||
<meta name="description" content="{{ meta_description or 'A hot new Handshake Blockchain Explorer' }}">
|
||||
|
||||
<!-- Open Graph Meta Tags -->
|
||||
<meta property="og:url" content="https://explorer.hns.au/">
|
||||
<meta property="og:url" content="{{ og_url or 'https://explorer.hns.au/' }}">
|
||||
<meta property="og:type" content="website">
|
||||
<meta property="og:title" content="Fire Explorer">
|
||||
<meta property="og:description" content="A hot new Handshake Blockchain Explorer">
|
||||
<meta property="og:image" content="https://explorer.hns.au/assets/img/og.png">
|
||||
<meta property="og:title" content="{{ meta_title or 'Fire Explorer' }}">
|
||||
<meta property="og:description" content="{{ meta_description or 'A hot new Handshake Blockchain Explorer' }}">
|
||||
<meta property="og:image" content="{{ og_image or 'https://explorer.hns.au/assets/img/og.png' }}">
|
||||
<meta property="og:image:width" content="1200">
|
||||
<meta property="og:image:height" content="630">
|
||||
|
||||
<!-- Twitter Meta Tags -->
|
||||
<meta name="twitter:card" content="summary_large_image">
|
||||
<meta property="twitter:domain" content="explorer.hns.au">
|
||||
<meta property="twitter:url" content="https://explorer.hns.au/">
|
||||
<meta name="twitter:title" content="Fire Explorer">
|
||||
<meta name="twitter:description" content="A hot new Handshake Blockchain Explorer">
|
||||
<meta name="twitter:image" content="https://explorer.hns.au/assets/img/og.png">
|
||||
<meta property="twitter:domain" content="{{ twitter_domain or 'explorer.hns.au' }}">
|
||||
<meta property="twitter:url" content="{{ og_url or 'https://explorer.hns.au/' }}">
|
||||
<meta name="twitter:title" content="{{ meta_title or 'Fire Explorer' }}">
|
||||
<meta name="twitter:description" content="{{ meta_description or 'A hot new Handshake Blockchain Explorer' }}">
|
||||
<meta name="twitter:image" content="{{ og_image or 'https://explorer.hns.au/assets/img/og.png' }}">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
@@ -119,6 +119,7 @@
|
||||
<div class="container">
|
||||
<p>Fire Explorer - Handshake Blockchain Explorer | Powered by <a href="https://hns.au" target="_blank">HNSAU</a> & <a href="https://hsd.hns.au" target="_blank">Fire HSD</a></p>
|
||||
<p class="timestamp">Last updated: {{ datetime }}</p>
|
||||
<small>Note: Date and times are in UTC</small>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user