#ifndef CONTENT_H
#define CONTENT_H
#include <cppcms/view.h>
#include <string>
namespace content {
std::string title;
};
struct page : public master {
std::string page_title, page_content;
};
struct news : public master {
std::list<std::string> news_list;
};
}
#endif