feat: Remove pageBase from liquid templates
- Remove pageBase global from all liquid templates - Change " to ' for all liquid tags
This commit is contained in:
parent
d64bf61a9c
commit
2d3c049d40
38 changed files with 86 additions and 110 deletions
|
|
@ -3,7 +3,7 @@ title: Drag
|
|||
tags:
|
||||
- ui
|
||||
---
|
||||
{% layout "hippie/app.liquid" %}
|
||||
{% layout 'hippie/app.liquid' %}
|
||||
|
||||
{% block body %}
|
||||
<header class="io pos_fix pin_top pin_right pin_left">
|
||||
|
|
@ -22,8 +22,8 @@ tags:
|
|||
{% endblock %}
|
||||
|
||||
{%- block script %}
|
||||
<script src="{{ pageBase }}js/app.js"></script>
|
||||
<script src="{{ pageBase }}js/drag.js"></script>
|
||||
<script src="/js/app.js"></script>
|
||||
<script src="/js/drag.js"></script>
|
||||
<script>
|
||||
// Get the space element
|
||||
const space = document.getElementById('space');
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue