File: template.html

package info (click to toggle)
haskell-hakyll 4.16.2.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 928 kB
  • sloc: haskell: 6,504; xml: 44; makefile: 9
file content (30 lines) | stat: -rw-r--r-- 382 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<div>
    I'm so rich I have $$3.

    $rev("foo")$
    $rev(rev("foo"))$

    $if(body)$
    I have body
    $else$
    or no
    $endif$

    $if(unbound)$
    should not be printed
    $endif$

    $if(body)$
    should be printed
    $endif$

    <ul>
    $for(authors)$
        <li>$name$</li>
    $endfor$
    </ul>

    $for(authors)$$name$$sep$, $endfor$

    $body$
</div>