Vugo theme
This commit is contained in:
commit
64b0159616
33 changed files with 1224 additions and 0 deletions
6
vugo/layouts/shortcodes/audio.html
Normal file
6
vugo/layouts/shortcodes/audio.html
Normal file
|
@ -0,0 +1,6 @@
|
|||
<audio controls="true">
|
||||
<source src="{{.Get "src" }}" type="audio/{{.Get "audio" }}">
|
||||
Sorry mate, your browser doesn't support playing audio files.
|
||||
</source>
|
||||
</audio>
|
||||
|
1
vugo/layouts/shortcodes/bold-gay.html
Normal file
1
vugo/layouts/shortcodes/bold-gay.html
Normal file
|
@ -0,0 +1 @@
|
|||
<b class="gay">{{ .Get "content" }}</b>
|
1
vugo/layouts/shortcodes/bold-italic-gay.html
Normal file
1
vugo/layouts/shortcodes/bold-italic-gay.html
Normal file
|
@ -0,0 +1 @@
|
|||
<b class="gay"><i>{{ .Get "content" }}</i></b>
|
1
vugo/layouts/shortcodes/end-details.html
Normal file
1
vugo/layouts/shortcodes/end-details.html
Normal file
|
@ -0,0 +1 @@
|
|||
</details>
|
1
vugo/layouts/shortcodes/gay.html
Normal file
1
vugo/layouts/shortcodes/gay.html
Normal file
|
@ -0,0 +1 @@
|
|||
<span class="gay">{{ .Get "content" }}</span>
|
1
vugo/layouts/shortcodes/hyperbowl.html
Normal file
1
vugo/layouts/shortcodes/hyperbowl.html
Normal file
|
@ -0,0 +1 @@
|
|||
<blockquote class="hyperbowl">"{{ .Get "content" }}"</blockquote>
|
20
vugo/layouts/shortcodes/img.html
Normal file
20
vugo/layouts/shortcodes/img.html
Normal file
|
@ -0,0 +1,20 @@
|
|||
<!--
|
||||
class: class of the figure
|
||||
link: url the image directs to
|
||||
alt: alternative text
|
||||
caption: caption
|
||||
mouse: what the image says when moused over ("title" in HTML)
|
||||
-->
|
||||
<figure {{ with .Get "class" }}class="{{.}}"{{ end -}}>
|
||||
{{- with .Get "link"}}<a href="{{.}}">{{ end -}}
|
||||
<img src="{{ .Get "src" }}"
|
||||
{{- with .Get "mouse" }} title="{{.}}"{{ end -}}
|
||||
{{- with .Get "alt" }} alt="{{.}}"{{ end -}}
|
||||
>
|
||||
{{- if .Get "link"}}</a>{{ end -}}
|
||||
{{- with .Get "caption" -}}
|
||||
<figcaption>
|
||||
{{- . -}}
|
||||
</figcaption>
|
||||
{{- end -}}
|
||||
</figure>
|
1
vugo/layouts/shortcodes/italic-gay.html
Normal file
1
vugo/layouts/shortcodes/italic-gay.html
Normal file
|
@ -0,0 +1 @@
|
|||
<i class="gay">{{ .Get "content" }}</i>
|
4
vugo/layouts/shortcodes/noscript.html
Normal file
4
vugo/layouts/shortcodes/noscript.html
Normal file
|
@ -0,0 +1,4 @@
|
|||
<noscript>
|
||||
<hr />
|
||||
<p class="gay">{{ .Get "content" }}</p>
|
||||
</noscript>
|
4
vugo/layouts/shortcodes/start-details.html
Normal file
4
vugo/layouts/shortcodes/start-details.html
Normal file
|
@ -0,0 +1,4 @@
|
|||
<details>
|
||||
<summary>
|
||||
{{ .Get "summary" }}
|
||||
</summary>
|
3
vugo/layouts/shortcodes/tagcloud.html
Normal file
3
vugo/layouts/shortcodes/tagcloud.html
Normal file
|
@ -0,0 +1,3 @@
|
|||
{{ if isset .Site.Taxonomies "tags" }}{{ if not (eq (len .Site.Taxonomies.tags) 0) }} <ul id="tagcloud">
|
||||
{{ range $name, $items := .Site.Taxonomies.tags }}{{ $url := printf "%s/%s" "tags" ($name | urlize | lower)}}<li><a href="{{ $url | absURL }}" id="tag_{{ $name }}">{{ $name | title }}</a></li>
|
||||
{{ end }}</ul>{{ end }}{{ end }}
|
Loading…
Add table
Add a link
Reference in a new issue