aboutsummaryrefslogtreecommitdiff
path: root/src/views/blog/list.ecr
blob: 240a384ee162e3c42bb54f8128381dce3f034e3f (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
<%
  # deprecated: replaced with theme templates
%><!DOCTYPE html>
<html lang='en-US'>
  <head>
    <meta charset="utf-8"/>
    <title><%=
      h(TITLE)
    %></title>

    <%
      # TODO: add theme styles
    %>
  </head>

  <body>
    <b>blog list</b>

    <div class='posts'><%=
      posts
    %></div><!-- posts -->
  </body>

  <%
    # TODO: add theme scripts
  %>
</html>