aboutsummaryrefslogtreecommitdiff
path: root/front.c
blob: 7bba90a10cc7142e6d31bf4ab180ed24d207b88c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <stdio.h>
#include "query.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"
}