Skip to content

Instantly share code, notes, and snippets.

@paulcsmith
Last active January 29, 2016 03:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save paulcsmith/009f70cc4b73141ac384 to your computer and use it in GitHub Desktop.
Save paulcsmith/009f70cc4b73141ac384 to your computer and use it in GitHub Desktop.
Render title and meta tags in Phoenix
<head>
<!-- you could put a helper in the Layout View but it's probably not necessary -->
<%= render_existing(@view_module, "seo." <> @view_template, assigns) || render("default_seo.html") %>
</head>
<title>This is the title for my index page</title>
...meta tags, etc...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment