aboutsummaryrefslogtreecommitdiff
path: root/front.c
blob: ff6973e2b25fac962e37a6c287b4278906733eb6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <stdio.h>
#include "site.h"

void
front()
{
	char *title;
	
	title = site.name;
	printf("Content-Type: text/html\n\n");
	#include "t/head.tc"
	#include "t/front.tc"
	#include "t/foot.tc"
}