Spaces:
Running
Running
Update src/templates/base.html
Browse files- src/templates/base.html +20 -1
src/templates/base.html
CHANGED
|
@@ -3,7 +3,26 @@
|
|
| 3 |
<head>
|
| 4 |
<meta charset="UTF-8">
|
| 5 |
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
|
| 6 |
-
<
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 7 |
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&display=swap" rel="stylesheet">
|
| 8 |
<style>
|
| 9 |
/* --- CSS VARIABLES --- */
|
|
|
|
| 3 |
<head>
|
| 4 |
<meta charset="UTF-8">
|
| 5 |
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
|
| 6 |
+
<title>{% block title %}CryptoVAT - Crypto Volume Analysis Toolkit{% endblock %}</title>
|
| 7 |
+
<meta name="description" content="{% block description %}Professional Crypto Volume Analysis Toolkit. Cross-market Spot/Futures analysis, tracking & automated data-driven PDF reporting.{% endblock %}">
|
| 8 |
+
<meta name="keywords" content="{% block keywords %}crypto, volume analysis, spot, futures, trading tool, VTMR, open interest, coinalyze, heisbuba{% endblock %}">
|
| 9 |
+
|
| 10 |
+
<meta name="author" content="Buba">
|
| 11 |
+
<meta name="robots" content="index, follow">
|
| 12 |
+
|
| 13 |
+
<meta property="og:title" content="{% block og_title %}CryptoVAT - Professional Volume Analysis{% endblock %}">
|
| 14 |
+
<meta property="og:description" content="{% block og_description %}Track Spot & Futures volume like a pro. Detect whale movements and track VTMR data.{% endblock %}">
|
| 15 |
+
<meta property="og:url" content="https://cryptovat.hf.space{{ request.path }}">
|
| 16 |
+
<meta property="og:type" content="website">
|
| 17 |
+
<meta property="og:site_name" content="CryptoVAT">
|
| 18 |
+
|
| 19 |
+
<meta name="twitter:card" content="summary_large_image">
|
| 20 |
+
<meta name="twitter:site" content="@heisbuba">
|
| 21 |
+
<meta name="twitter:creator" content="@heisbuba">
|
| 22 |
+
<meta name="twitter:title" content="{% block twitter_title %}{{ self.og_title() }}{% endblock %}">
|
| 23 |
+
<meta name="twitter:description" content="{% block twitter_description %}{{ self.og_description() }}{% endblock %}">
|
| 24 |
+
|
| 25 |
+
<link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;700&family=Inter:wght@400;500;600;800&display=swap" rel="stylesheet">
|
| 26 |
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&display=swap" rel="stylesheet">
|
| 27 |
<style>
|
| 28 |
/* --- CSS VARIABLES --- */
|