Skip to content

Instantly share code, notes, and snippets.

@andete
Created June 17, 2017 07:59
Show Gist options
  • Save andete/56bfafbb97f5d505f16169b5efd2fd8e to your computer and use it in GitHub Desktop.
Save andete/56bfafbb97f5d505f16169b5efd2fd8e to your computer and use it in GitHub Desktop.
#[get("/page")]
fn page(lang: Lang) -> content::HTML<String> {
let hello = if lang == Lang::Nl {
"Hallo daar!"
} else {
"Hello there!"
};
content::HTML(format!(
"<html>
<body>
<h1>{}</h1>
<a href='/lang/en'>English</a>
<a href='/lang/nl'>Nederlands</a>
</body>
</html>", hello))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment