webpy を使用して Web サイトをセットアップしました。私のメインページはlayout.htmlです。foo1.html をレイアウトに読み込みます
$def with (content)
<html>
<head>
<title>Foo</title>
</head>
<body>
$:content
</body>
</html>
そして、中身は foo1.html です
<div> Hello </div>
foo1.html を変更して、別の Web ページもロードすることは可能ですか?
$def with (secondarycontent)
<div> $:secondarycontent </div>