Files
Brooke Kuhlmann 5b4156b16f Refactored extension templates to use spaces between braces
Small consistency tweaks to give the values within the Liquid templates more breathing room.

Milestone: patch
2026-05-20 15:52:22 -06:00

26 lines
556 B
Ruby

# frozen_string_literal: true
module Terminus
module Aspects
module Extensions
DEFAULTS = {
tags: [],
mode: "light",
kind: "poll",
verb: "get",
start_at: Time.now.strftime("%Y-%m-%dT00:00:00"),
days: [],
interval: 1,
template: <<~BODY
<div class="{{ extension.css_classes }}">
<div class="view view--full">
<div class="layout layout--col">
</div>
</div>
</div>
BODY
}.freeze
end
end
end