feat: Replace blank screen with liquid version
- Add title to full template - Remove unnecessary title from screens - Change CRLF to LF
This commit is contained in:
parent
5663813ecf
commit
1b7e4f4888
7 changed files with 16 additions and 29 deletions
|
|
@ -9,8 +9,6 @@ tags:
|
|||
{% assign pageClass = "h_full_view" -%}
|
||||
{%- layout "hippie/full.liquid" %}
|
||||
|
||||
{% block title %}Index{% endblock %}
|
||||
|
||||
{% block body %}
|
||||
<div class="wrap">
|
||||
<div class="hello">
|
||||
|
|
|
|||
10
source/screens/demo/pages/blank.liquid
Normal file
10
source/screens/demo/pages/blank.liquid
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
---
|
||||
title: Blank
|
||||
---
|
||||
{% assign pageBase = "../../" -%}
|
||||
{% assign pageId = page.fileSlug -%}
|
||||
{%- layout "hippie/full.liquid" %}
|
||||
|
||||
{% block body %}
|
||||
<!-- {{ title }} -->
|
||||
{% endblock %}
|
||||
|
|
@ -1,22 +0,0 @@
|
|||
---
|
||||
title: Blank
|
||||
---
|
||||
{% set pageBase = "../" %}
|
||||
{% set pageId = page.fileSlug %}
|
||||
{% set pageClass = "h_full_view" %}
|
||||
|
||||
{% extends "demo/_default.njk" %}
|
||||
|
||||
{% block title %}{{ title }}{% endblock %}
|
||||
|
||||
{% block head %}
|
||||
{{ super() }}
|
||||
{% endblock %}
|
||||
|
||||
{% block body %}
|
||||
<!-- {{ page.fileSlug }}.page -->
|
||||
{% endblock %}
|
||||
|
||||
{% block script %}
|
||||
{{ super() }}
|
||||
{% endblock %}
|
||||
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
title: "Default"
|
||||
title: Default
|
||||
---
|
||||
{% assign pageBase = "../" -%}
|
||||
{% assign pageId = page.fileSlug -%}
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
title: Maintenance
|
||||
---
|
||||
{% assign pageBase = "../../" -%}
|
||||
{% assign pageClass = "h_full_view" %}
|
||||
{% assign pageClass = "h_full_view" -%}
|
||||
{%- layout "hippie/status.liquid" %}
|
||||
|
||||
{% block body %}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue