nim-theNewWeb/tmpl/snippet_html.nim

23 lines
1004 B
Nim
Raw Normal View History

import templates
2022-08-06 16:51:49 -04:00
import ../code/web_utils
proc templ_title* (title: string): string = tmpli html"""
2022-08-06 16:51:49 -04:00
<h2>$title</h2>
"""
proc status_joplin_green* (): string = tmpli html"""
<svg xmlns="http://www.w3.org/2000/svg" width="25" height="25" fill="#3bed18" class="bi bi-caret-right-square-fill" viewBox="0 0 16 16">
<path d="M0 2a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V2zm5.5 10a.5.5 0 0 0 .832.374l4.5-4a.5.5 0 0 0 0-.748l-4.5-4A.5.5 0 0 0 5.5 4v8z"/>
</svg>
"""
proc status_joplin_red* (): string = tmpli html"""
<svg xmlns="http://www.w3.org/2000/svg" width="25" height="25" fill="#C9404D" class="bi bi-caret-right-square-fill" viewBox="0 0 16 16">
<path d="M0 2a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V2zm5.5 10a.5.5 0 0 0 .832.374l4.5-4a.5.5 0 0 0 0-.748l-4.5-4A.5.5 0 0 0 5.5 4v8z"/>
</svg>
"""
proc checkStatus_joplinSyncro* (): string = tmpli html"""
"""