|
<!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> |