mirror of
https://onedev.site.tesses.net/crosslang/crosslangextras
synced 2026-02-08 09:05:46 +00:00
29 lines
823 B
Plaintext
29 lines
823 B
Plaintext
<?page() route="/about" ?>
|
|
<?code
|
|
var pages = [
|
|
{
|
|
active = false,
|
|
route = "/",
|
|
text = "Home"
|
|
},
|
|
{
|
|
active = false,
|
|
route = "/counter",
|
|
text = "Counter"
|
|
},
|
|
{
|
|
active = true,
|
|
route = "/about",
|
|
text = "About"
|
|
}
|
|
];
|
|
?>
|
|
<?Shell?>
|
|
<?arg "About Me" ?>
|
|
<?arg pages ?>
|
|
<?arg_component() ?>
|
|
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Laboriosam possimus nisi ab nobis magni, error minus vero neque iusto beatae, quasi nostrum. Ut repudiandae expedita reprehenderit tenetur. Sunt, adipisci cumque!</p>
|
|
<?end?>
|
|
<?end?>
|
|
<?end?>
|