File size: 838 Bytes
f74338c |
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 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{% block title %}Your App Name{% endblock %}</title>
<link rel="stylesheet" href="{{ url_for('static', filename='styles.css') }}">
</head>
<body>
<header>
<div class="logo">
<img src="{{ url_for('static', filename='logo.png') }}" alt="Company Logo">
<h1>Editor Assistant</h1>
</div>
<nav>
<ul>
<li><a href="/">Home</a></li>
<li><a href="/compare">Compare</a></li>
<li><a href="/styleguide">Style Guide</a></li>
</ul>
</nav>
</header>
<main>
{% block content %}{% endblock %}
</main>
<footer>
<p>CIEG, India</p>
</footer>
</body>
</html> |