blob: aba2f9180b1fb790d9a07dc6d8b27e5a657f53fa (
plain)
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
27
28
29
30
31
32
33
|
<%
# deprecated: replaced with theme templates
%><!DOCTYPE html>
<html lang='en-US'>
<head>
<meta charset="utf-8"/>
<title>Project: <%=
h(@item["name"])
%></title>
<%
# TODO: add theme styles
%>
</head>
<body>
<div class='post'>
<b>Project: <%= h(@item["name"]) %></b><br/>
<%= @item["body"] %>
<p>
Repo URL: <a
href='<%= h(@item["repo_url"]) %>'
title='View <%= h(@item["name"]) %> Git repository.'
><%= h(@item["repo_url"]) %></a>
</p>
</div>
</body>
<%
# TODO: add theme scripts
%>
</html>
|