2025-11-12 20:58:07 +01:00
|
|
|
/*
|
|
|
|
|
catcrafts.net
|
|
|
|
|
Copyright (C) 2025 Catcrafts
|
|
|
|
|
|
|
|
|
|
The source code of this website is made available for viewing purposes only.
|
|
|
|
|
No permission is granted to copy, modify, distribute, or create derivative works.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
export module Catcrafts:Views;
|
|
|
|
|
import Crafter.CppDOM;
|
|
|
|
|
using namespace Crafter;
|
|
|
|
|
|
|
|
|
|
export namespace Catcrafts {
|
|
|
|
|
HtmlElementView* body = new HtmlElementView("body");
|
2025-11-12 21:04:34 +01:00
|
|
|
HtmlElementView* head = new HtmlElementView("head", R"(
|
|
|
|
|
<style>
|
|
|
|
|
|
|
|
|
|
</style>
|
|
|
|
|
)");//add style here
|
2025-11-12 20:58:07 +01:00
|
|
|
}
|