feat: add support for custom page titles

Also put the paste ID in the title for the show page
This commit is contained in:
Akshit Garg 2022-02-16 16:30:30 +05:30 committed by GitHub
parent de365b36ad
commit 5820652ac1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 2 deletions

View File

@ -28,7 +28,8 @@ defmodule KetbinWeb.PageController do
render(conn, "show.html",
paste: paste,
show_edit: show_edit,
extension: List.first(tail) || ""
extension: List.first(tail) || "",
page_title: paste.id
)
end
end

View File

@ -4,7 +4,11 @@
<meta charset="utf-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Katbin</title>
<%= if Map.has_key?(assigns, :page_title) do %>
<title>Katbin - <%= @page_title %></title>
<% else %>
<title>Katbin</title>
<% end %>
<link rel="stylesheet" href={ Routes.static_path(@conn, "/assets/app.css") }/>
<script defer type="text/javascript" src={ Routes.static_path(@conn, "/assets/app.js") }></script>
</head>