blob: 9b1d21b8f8410982ec8512e302f8cc1a6bc7ad6b (
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
|
<!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>
|