summaryrefslogtreecommitdiff
path: root/templates/base.html
blob: 876141202a991019a99d1d223fa6817b7faa7c67 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>VibesHome</title>
    <link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">

</head>

<body>
    <header>
        <h1><a href="{{ url_for('index') }}"> VibesHome</a></h1>
    </header>
    <main>
        {% block content %}{% endblock %}
    </main>
</body>

</html>
/td> treed3b7e1d427474e3111206affb4fb59ad57614a88 /ntcoin parent3dfe89db4a2e19341d178197d5f805972c4d4e68 (diff)
Fixed symlinking bug in ntcoin regarding compile_(t/p)coin and edit_(t/p)coin
Fixed a bug in ntcoin where the symlinks from tcoin/bin/compile_tcoin and tcoin/bin/edit_tcoin to ~/bin/compile_tcoin and ~/bin/edit_tcoin are made properly. The previous command did something else.
Diffstat (limited to 'ntcoin')