Phoenix.LiveView.Helpers.live_title_tag

You're seeing just the function live_title_tag, go back to Phoenix.LiveView.Helpers module for more information.
Link to this function

live_title_tag(title, opts \\ [])

View Source

Renders a title tag with automatic prefix/suffix on @page_title updates.

Examples

<%= live_title_tag assigns[:page_title] || "Welcome", prefix: "MyApp – " %>

<%= live_title_tag assigns[:page_title] || "Welcome", suffix: " – MyApp" %>