webc v0.0.11
Write and deploy websites using the C Programming Language.
Loading...
Searching...
No Matches
blog.h
Go to the documentation of this file.
1
32#ifndef WEBC_TEMPLATE_BLOG_H
33#define WEBC_TEMPLATE_BLOG_H
34
35#include "../webc-core.h"
36#include "./template.h"
37#include "../webc-actions.h"
38
39#ifdef __cplusplus
40extern "C" {
41#endif
42
43typedef struct {
44 Cstr lang;
45 Template template;
46} Blog;
47
48#define POSTS_PATH "./posts"
49#define ABOUT_PATH "./about.md"
50
51WEBCAPI Tree WEBC_TemplateBlog(Cstr root, Blog blog);
52
53#ifdef __cplusplus
54}
55#endif
56
57#endif // WEBC_TEMPLATE_BLOG_H
Definition blog.h:43
Definition template.h:50
Definition webc-actions.h:59