🐙 Templated web page generator for your git repositories
git clone https://github.com/m-col/gitja
Files | Refs | Readme | License

-rw-r--r-- test/templates/repo/index.html


      1 {% extends "../title.html.include" -%}
      2 {%- block title -%}{{ name }}{%- endblock -%}
      3 
      4 {% block body %}
      5 scope: repository
      6 host: {{ host }}
      7 repos: {{ repositories }}
      8 name: {{ name }}
      9 description: {{ description }}
     10 commits: (skipped)
     11 tree: (skipped)
     12 tags: {{ length(filter(tags, (t) -> t.name == "0.2.0")) }}
     13 readme.path: {{ readme.path }}
     14 license.path: {{ license.path }}
     15 {% endblock %}
     16