File: projects.mustache

package info (click to toggle)
mustache-d 0.1.4-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 188 kB
  • sloc: makefile: 7
file content (26 lines) | stat: -rw-r--r-- 444 bytes parent folder | download | duplicates (2)
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
<!DOCTYPE HTML>
<html>
  <head>
    <title> projects </title>
    <style>.row {  width: {{width}}px; }</style>
  </head>

  <body>
    <h1> projects </h1>

    <div class="row">
      {{#projects}}
        <a href="{{url}}" class="block">
          <h2> {{name}} </h2>
          <p> {{description}} </p>
        </a>
      {{/projects}}
    </div>

    <div class="back">
      <a href="/">
      &#8617;
      </a>
    </div>
 </body>
</html>