part of #34: store last openid and pre-fill URL field
[phorkie.git] / data / templates / display.htm
index 5bcb0162adcc1f49f1a4e81f18e97daef0d41934..2bd0d73e3564630a09548677a50ad38050a5d6db 100644 (file)
@@ -1,10 +1,14 @@
 {% extends "base.htm" %}
-{% block title %}
- {{repo.getTitle}}
-{% endblock %}
+{% block title %}{{repo.getTitle}}{% endblock %}
 
 {% block meta %}
 <link rel="meta" title="DOAP" type="application/rdf+xml" href="{{repo.getLink('doap')}}"/>
+{% if repo.getCloneURL(true) %}
+  <link rel="vcs-git" href="{{repo.getCloneURL(true)}}" title="{{repo.getTitle}} git repository"/>
+{% endif %}
+{% if repo.getCloneURL(false) %}
+  <link rel="vcs-git" href="{{repo.getCloneURL(false)}}" title="{{repo.getTitle}} git repository"/>
+{% endif %}
 {% endblock %}
 
 {% block content %}
@@ -18,5 +22,6 @@
 {% endblock %}
 
 {% block sidebar %}
+ {% include 'display-sidebar-owner.htm' %}
  {% include 'display-sidebar-history.htm' %}
 {% endblock %}