NepaliCNN / templates /layout.html
pujan paudel
first commit
1a11305
raw
history blame
274 Bytes
<!DOCTYPE html>
<html>
<head>
<title>My Website</title>
<link rel="stylesheet" href="{{ url_for('static', filename='style/style.css') }}">
</head>
<body>
{% include 'components/navbar.html' %}
<main>
{% block content %}{% endblock %}
</main>
</body>
</html>