🐙 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/foreach.commit.html


      1 {% extends "../title.html.include" -%}
      2 {%- block title -%}{{ commit }}{%- endblock -%}
      3 
      4 {% block body %}
      5 scope: commit
      6 commit: {{ commit }}
      7 commit.id: {{ commit.id }}
      8 commit.title: {{ commit.title }}
      9 commit.body: {{ commit.body }}
     10 commit.message: {{ commit.message }}
     11 commit.author: {{ commit.author }}
     12 commit.committer: {{ commit.committer }}
     13 commit.author_email: {{ commit.author_email }}
     14 commit.committer_email: {{ commit.committer_email }}
     15 commit.authored: {{ commit.authored }}
     16 commit.committed: {{ commit.committed }}
     17 commit.encoding: {{ commit.encoding }}
     18 commit.parent: {{ commit.parent }}
     19 {% endblock %}
     20