<% #include "html.h" %> <% void print_header(page_t *page) { %> <% if (page->error) %><%% "Status: %s\n", page->error %> Content-Type: text/html;charset=UTF-8 <% } %> <% void print_link(char *path, char *name, int cur) { %> class="cur"<% } %>><%= name %> <% } %> <% void print_page(page_t *page, menu_t *menu) { %> <% if (page->title) %><%% "%s - ", page->title %>pileus.org " rel="stylesheet" type="text/css" /> <% if (page->keys) { %> <% } %> <% if (page->desc) { %> <% } %>
">pileus.org <% if (page->title) %><%= page->title %>

<% print_menu(menu, 0, 0); %>

<% if (page->error) { %>

<%= page->error %>

<%= page->html %>

<% } else { %> <%= page->html %> <% } %>
<% } %>