Skip to content

Instantly share code, notes, and snippets.

@koduki
Created January 11, 2010 16:21
Show Gist options
  • Save koduki/274343 to your computer and use it in GitHub Desktop.
Save koduki/274343 to your computer and use it in GitHub Desktop.
// 名前付きパラメータに対応
get("/${user}/${id}.html"){env =>
import env._
template(
<h1>ブログなんだよもん</h1>
<p>
<a href="new.html">投稿</a>
</p>
<p>name :{params("user")}</p>
<p>id :{params("id")}</p>
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment