summaryrefslogtreecommitdiff
path: root/templates/index.html
blob: 57948b431a1e1a4184456ab8dc4a59bb59eca567 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <!-- Meta tags for SEO -->
    <meta name="description" content="Venkatesh Chaturvedi, passionate about Linux and FOSS.">
    <meta name="keywords"
        content="Venkatesh Chaturvedi, Blaster4385, tablaster, FOSS, CLI tools, Linux, Android, Open Source, git">
    <meta name="author" content="Venkatesh Chaturvedi">
    <meta name="robots" content="index, follow">
    <!-- Open Graph meta tags for social sharing -->
    <meta property="og:title" content="Blaster4385">
    <meta property="og:description" content="Venkatesh Chaturvedi, passionate about Linux and FOSS.">
    <meta property="og:image" content="https://github.com/Blaster4385.png">
    <meta property="og:url" content="https://tablaster.dev">
    <meta property="og:type" content="website">
    <!-- Twitter Card meta tags for social sharing -->
    <meta name="twitter:card" content="summary">
    <meta name="twitter:creator" content="@Blaster4385">
    <meta name="twitter:title" content="Blaster4385">
    <meta name="twitter:description" content="Venkatesh Chaturvedi, passionate about Linux and FOSS.">
    <meta name="twitter:image" content="https://github.com/Blaster4385.png">
    <title>{{.Title}}</title>
    <style>
        {{.CSS}}
    </style>
    <link rel="icon" type="image/png" href="{{.Favicon}}">
</head>

<body>
    <main class="container">
        <header id="header">
            <h1><a href="/">$ tablaster.dev</a></h1>
        </header>
        <div id="markdown">
            {{.Body}}
        </div>
    </main>
</body>

</html>