2006-08-24から1日間の記事一覧

htmlビューのモジュール化をテンプレートエンジンに取り入れる

実装する時間が今とれないのでアイデアだけ。a.html <html><head> <title v:cont="{title}">TITLE!</title> </head> <body> <div v:cont="{content}"></div> </body> b.html <p v:cont="{foo}"></p> a.html のcontentにb.htmlを埋込む <html><head> <link rel="stylesheet" type="text/css" href="b.css" /> <title>テンプレート</title> </head> <body> </body></html></html>