Get rid of //, it makes no sense here

This commit is contained in:
SoniEx2 2019-04-23 06:40:23 -03:00
parent 828d0ac9cf
commit 32b581a6c4
1 changed files with 2 additions and 2 deletions

View File

@ -50,7 +50,7 @@ TEMPLATE = """<!DOCTYPE html>
</head> </head>
<body> <body>
<h1>{{ project_title|e }}</h1> <h1>{{ project_title|e }}</h1>
<p>Tracking <span id="project_commit"><a href="web+ganarchy://{{ project_commit }}">{{ project_commit }}</a></span></p> <p>Tracking <span id="project_commit"><a href="web+ganarchy:{{ project_commit }}">{{ project_commit }}</a></span></p>
<div id="project_body"><p>{{ project_body|e|replace("\n\n", "</p><p>") }}</p></div> <div id="project_body"><p>{{ project_body|e|replace("\n\n", "</p><p>") }}</p></div>
<ul> <ul>
{% for url, msg, img in repos -%} {% for url, msg, img in repos -%}
@ -61,7 +61,7 @@ TEMPLATE = """<!DOCTYPE html>
<p> <p>
<a href="/">Main page</a>. <a href="/">Main page</a>.
<!-- commented out because browsers suck :( --> <!-- commented out because browsers suck :( -->
<!--<a href="{{ base_url|e }}" onclick="event.preventDefault(); navigator.registerProtocolHandler('web+ganarchy', this.href + 'project/%s', 'GAnarchy');">Register web+ganarchy:// handler</a>.--> <!--<a href="{{ base_url|e }}" onclick="event.preventDefault(); navigator.registerProtocolHandler('web+ganarchy', this.href + 'project/%s', 'GAnarchy');">Register web+ganarchy: URI handler</a>.-->
</p> </p>
</body> </body>
</html> </html>