- Add liquid template page - Basics screen now uses liquid - Correct script block in templates - Add parameters to meta and log partials - Add liquid partials for page and placeholder content
17 lines
No EOL
358 B
Text
17 lines
No EOL
358 B
Text
---
|
|
title: Default
|
|
---
|
|
{% assign pageBase = "../" -%}
|
|
{% assign pageId = page.fileSlug -%}
|
|
{% assign pageClass = "default" -%}
|
|
{% assign bodyClass = "default" -%}
|
|
{% layout "hippie/default.liquid" %}
|
|
|
|
{% block title %}{{ title }}{% endblock %}
|
|
|
|
{% block script %}
|
|
<script>
|
|
// Page script
|
|
console.log("pageBase is: {{ pageBase }}");
|
|
</script>
|
|
{% endblock %} |