relift-html
Version:
A blazing fast view library that lets you put Javascript Template Literals in HTML
20 lines (17 loc) • 564 B
HTML
{# **REQUIRED** #}
{% import "macros/meta.html" as Meta with context %}
{# header #}
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
{{ Meta.meta_page_title() }}
{{ Meta.meta_page_description() }}
{{ Meta.meta_page_meta_tags() }}
{% for css in page.assets.stylesheets %}
{{ stylesheet_tag(css.url) }}
{% endfor %}
</head>
<body>