mirror of
https://github.com/acid-info/nimbus-site.git
synced 2025-01-31 19:45:33 +00:00
2063113431
* add partials repo as submodule * use header nav partial * update header nav to use partial * added missing popup html * add update script * updated submodule(s)
15 lines
340 B
Plaintext
15 lines
340 B
Plaintext
<!DOCTYPE html>
|
|
<html lang="{{ page.lang }}">
|
|
{{ partial('partial/head') }}
|
|
<body>
|
|
<div id="container">
|
|
{% if page.source != 'index.md' %}
|
|
{{ partial('partial/header') }}
|
|
{% endif %}
|
|
{{ body }}
|
|
{{ partial('partial/shared-partials/partials/footer') }}
|
|
</div>
|
|
{{ partial('partial/after_footer') }}
|
|
</body>
|
|
</html>
|