mirror of
https://github.com/livebook-dev/livebook.git
synced 2024-11-16 12:57:32 +08:00
238635a6be
* Change favicon based on notebook status * Format correction * "operation" is unused * Improvements for better functioning of icons * Renamed icons files * Update favicons * Update changelog Co-authored-by: Jonatan Kłosko <jonatanklosko@gmail.com>
16 lines
630 B
Text
16 lines
630 B
Text
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8"/>
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
|
<%= csrf_meta_tag() %>
|
|
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
|
<%= live_title_tag assigns[:page_title] || "Livebook" %>
|
|
<link phx-track-static rel="stylesheet" href={Routes.static_path(@conn, "/css/app.css")}/>
|
|
<script defer phx-track-static type="text/javascript" src={Routes.static_path(@conn, "/js/app.js")}></script>
|
|
</head>
|
|
<body>
|
|
<%= @inner_content %>
|
|
</body>
|
|
</html>
|