Move files into new Hugo format
This commit is contained in:
2
layouts/_shortcodes/donate_css.html
Normal file
2
layouts/_shortcodes/donate_css.html
Normal file
@@ -0,0 +1,2 @@
|
||||
{{ $style := resources.Get "scss/donate.scss" | css.Sass | resources.Minify }}
|
||||
<link rel="stylesheet" href="{{ $style.Permalink }}">
|
||||
4
layouts/_shortcodes/donation_method.html
Normal file
4
layouts/_shortcodes/donation_method.html
Normal file
@@ -0,0 +1,4 @@
|
||||
<tr>
|
||||
<td>{{ .Get 0 }}</td>
|
||||
<td><code>{{ .Get 1 }}</code></td>
|
||||
</tr>
|
||||
3
layouts/_shortcodes/donation_methods.html
Normal file
3
layouts/_shortcodes/donation_methods.html
Normal file
@@ -0,0 +1,3 @@
|
||||
<table class="donation-methods">
|
||||
{{ .Inner }}
|
||||
</table>
|
||||
8
layouts/_shortcodes/gmachine.html
Normal file
8
layouts/_shortcodes/gmachine.html
Normal file
@@ -0,0 +1,8 @@
|
||||
<div class="gmachine-instruction">
|
||||
<div class="gmachine-instruction-name">
|
||||
{{ .Get 0 }}
|
||||
</div>
|
||||
<div class="gmachine-instruction-sem">
|
||||
{{ .Inner }}
|
||||
</div>
|
||||
</div>
|
||||
2
layouts/_shortcodes/gmachine_css.html
Normal file
2
layouts/_shortcodes/gmachine_css.html
Normal file
@@ -0,0 +1,2 @@
|
||||
{{ $style := resources.Get "scss/gmachine.scss" | css.Sass | resources.Minify }}
|
||||
<link rel="stylesheet" href="{{ $style.Permalink }}">
|
||||
8
layouts/_shortcodes/gmachine_inner.html
Normal file
8
layouts/_shortcodes/gmachine_inner.html
Normal file
@@ -0,0 +1,8 @@
|
||||
<div class="gmachine-inner">
|
||||
<div class="gmachine-inner-label">
|
||||
{{ .Get 0 }}
|
||||
</div>
|
||||
<div class="gmachine-inner-text">
|
||||
{{ .Inner }}
|
||||
</div>
|
||||
</div>
|
||||
3
layouts/_shortcodes/stack.html
Normal file
3
layouts/_shortcodes/stack.html
Normal file
@@ -0,0 +1,3 @@
|
||||
<div class="stack">
|
||||
{{ .Inner }}
|
||||
</div>
|
||||
2
layouts/_shortcodes/stack_css.html
Normal file
2
layouts/_shortcodes/stack_css.html
Normal file
@@ -0,0 +1,2 @@
|
||||
{{ $style := resources.Get "scss/stack.scss" | css.Sass | resources.Minify }}
|
||||
<link rel="stylesheet" href="{{ $style.Permalink }}">
|
||||
3
layouts/_shortcodes/stack_element.html
Normal file
3
layouts/_shortcodes/stack_element.html
Normal file
@@ -0,0 +1,3 @@
|
||||
<div class="stack-element">
|
||||
{{ .Inner }}
|
||||
</div>
|
||||
1
layouts/_shortcodes/stack_image.html
Normal file
1
layouts/_shortcodes/stack_image.html
Normal file
@@ -0,0 +1 @@
|
||||
<img src="{{ .Get 0 }}" style="max-height: 20rem; margin: auto; display: block;">
|
||||
2
layouts/_shortcodes/thevoid.html
Normal file
2
layouts/_shortcodes/thevoid.html
Normal file
@@ -0,0 +1,2 @@
|
||||
<span class="glitch" data-text="{{ .Get 0 }}"><span>{{ .Get 0 }}</span></span>
|
||||
{{- /* Remove trailing white space */ -}}
|
||||
Reference in New Issue
Block a user