Skip to content

Commit

Permalink
Added favicon
Browse files Browse the repository at this point in the history
  • Loading branch information
tedyoung committed Dec 19, 2023
1 parent 307a784 commit 831db07
Show file tree
Hide file tree
Showing 10 changed files with 14 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
</parent>
<groupId>com.jitterted</groupId>
<artifactId>ensembler</artifactId>
<version>1.0.14</version>
<version>1.0.15</version>
<name>ensembler</name>
<description>Ensemble Registration Manager</description>
<properties>
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/main/resources/static/apple-touch-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/main/resources/static/favicon-16x16.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/main/resources/static/favicon-32x32.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/main/resources/static/favicon.ico
Binary file not shown.
6 changes: 5 additions & 1 deletion src/main/resources/static/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,12 @@
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Mob Registration</title>
<title>Register for an Ensemble - Ensembler</title>
<link href="/tailwind.css" rel="stylesheet">
<link rel="icon" href="/favicon-32x32.png" sizes="32x32">
<link rel="icon" href="/favicon-16x16.png" sizes="16x16">
<link rel="apple-touch-icon" href="/apple-touch-icon.png"><!-- 180×180 -->
<link rel="manifest" href="/site.webmanifest">
</head>
<body>
<div class="min-h-screen bg-gray-50 flex flex-col justify-center py-12 sm:px-6 lg:px-8">
Expand Down
4 changes: 4 additions & 0 deletions src/main/resources/templates/dashboard.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@
<head>
<title>Admin Dashboard - Ensembler</title>
<link th:href="@{/tailwind.css}" href="../static/tailwind.css" rel="stylesheet">
<link rel="icon" href="/favicon-32x32.png" sizes="32x32">
<link rel="icon" href="/favicon-16x16.png" sizes="16x16">
<link rel="apple-touch-icon" href="/apple-touch-icon.png"><!-- 180×180 -->
<link rel="manifest" href="/site.webmanifest">
<script src="https://kit.fontawesome.com/3ae2c56324.js" crossorigin="anonymous"></script>
<script>
// convert UTC Date Time to browser's time zone, only for <span> elements with .datetimeutc class
Expand Down
4 changes: 4 additions & 0 deletions src/main/resources/templates/member-register.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@
<title>Ensembler Registration</title>
<link th:href="@{/tailwind.css}" href="../static/tailwind.css" rel="stylesheet">
<script src="https://kit.fontawesome.com/3ae2c56324.js" crossorigin="anonymous"></script>
<link rel="icon" href="/favicon-32x32.png" sizes="32x32">
<link rel="icon" href="/favicon-16x16.png" sizes="16x16">
<link rel="apple-touch-icon" href="/apple-touch-icon.png"><!-- 180×180 -->
<link rel="manifest" href="/site.webmanifest">
<script>
// convert UTC Date Time to browser's time zone, only for <span> elements with datetimeutc class
window.onload = () => {
Expand Down

0 comments on commit 831db07

Please sign in to comment.