-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixes tests and removes lux and vue imports
- Loading branch information
Showing
2 changed files
with
4 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,22 +5,11 @@ | |
<meta name="viewport" content="width=device-width, initial-scale=1" /> | ||
<meta name="csrf-token" content={get_csrf_token()} /> | ||
<.live_title suffix=" · Phoenix Framework"> | ||
<%= assigns[:page_title] || "DpulCollections" %> | ||
<%= assigns[:page_title] || "Digital Collections" %> | ||
</.live_title> | ||
<link phx-track-static rel="stylesheet" href={~p"/assets/app.css"} /> | ||
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/style.css" /> | ||
<script src="https://unpkg.com/vue@3/dist/vue.global.js"> | ||
</script> | ||
<script src="https://unpkg.com/[email protected]/dist/lux-styleguidist.iife.js"> | ||
</script> | ||
<script defer phx-track-static type="text/javascript" src={~p"/assets/app.js"}> | ||
</script> | ||
<script> | ||
document.addEventListener("DOMContentLoaded", function(){ | ||
const { createApp } = Vue | ||
createApp().use(Lux.default).mount('#app') | ||
}); | ||
</script> | ||
</head> | ||
<body class="bg-white antialiased"> | ||
<a | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,24 +5,13 @@ | |
<head> | ||
<meta charset="utf-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1" /> | ||
<title>DpulCollections</title> | ||
<title>Digital Collections</title> | ||
<link rel="stylesheet" href="/assets/app.css" /> | ||
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/style.css" /> | ||
<script src="https://unpkg.com/vue@3/dist/vue.global.js"> | ||
</script> | ||
<script src="https://unpkg.com/[email protected]/dist/lux-styleguidist.iife.js"> | ||
</script> | ||
<script> | ||
document.addEventListener("DOMContentLoaded", function(){ | ||
const { createApp } = Vue | ||
createApp().use(Lux.default).mount('#app') | ||
}); | ||
</script> | ||
</head> | ||
|
||
<body class="bg-white antialiased"> | ||
<div class="flex flex-col min-h-screen" id="app"> | ||
<%= DpulCollectionsWeb.LuxComponents.header(assigns) %> | ||
<%= DpulCollectionsWeb.HeaderComponent.header(assigns) %> | ||
<div class="flex-1"> | ||
<main class="max-w-7xl mx-auto py-6 px-4 sm:px-6 lg:px-8"> | ||
<div class="grid grid-flow-row auto-rows-max gap-20"> | ||
|
@@ -34,7 +23,7 @@ | |
</div> | ||
</main> | ||
</div> | ||
<%= DpulCollectionsWeb.LuxComponents.footer(assigns) %> | ||
<%= DpulCollectionsWeb.FooterComponent.footer(assigns) %> | ||
</div> | ||
</body> | ||
</html> |