X-Git-Url: https://gitweb.ps.run/ps-cgit/blobdiff_plain/30304d8156a72ffc95e45e1aa9407319b81bd253..9c70c0bfdb71b39f6bae6e0c77bbe40b22d64ff5:/ui-repolist.c?ds=sidebyside diff --git a/ui-repolist.c b/ui-repolist.c index edefc4c..ac1b3e3 100644 --- a/ui-repolist.c +++ b/ui-repolist.c @@ -10,7 +10,6 @@ #include "ui-repolist.h" #include "html.h" #include "ui-shared.h" -#include static time_t read_agefile(char *path) { @@ -346,9 +345,12 @@ void cgit_print_repolist(void) void cgit_print_site_readme(void) { + cgit_print_layout_start(); if (!ctx.cfg.root_readme) - return; + goto done; cgit_open_filter(ctx.cfg.about_filter, ctx.cfg.root_readme); html_include(ctx.cfg.root_readme); cgit_close_filter(ctx.cfg.about_filter); +done: + cgit_print_layout_end(); }