- Remove pageBase global from all liquid templates - Change " to ' for all liquid tags
13 lines
272 B
Text
13 lines
272 B
Text
---
|
|
title: Default
|
|
---
|
|
{% assign pageId = page.fileSlug -%}
|
|
{% assign pageClass = 'default' -%}
|
|
{% assign bodyClass = 'default' -%}
|
|
{% layout 'hippie/default.liquid' %}
|
|
|
|
{% block title %}{{ title }}{% endblock %}
|
|
|
|
{% block body %}
|
|
<!-- {{ title }} body -->
|
|
{% endblock %}
|