mirror of
https://github.com/misenhower/splatoon2.ink.git
synced 2026-04-25 07:52:38 -05:00
The biggest changes here include splitting the server-side JS into multiple directories (under /src/app), moving all web content to /src/web, and compiling the web app to /dist instead of /public. This layout makes more sense overall, and more closely mirrors what is used for vue-cli v3 projects.
33 lines
1.9 KiB
HTML
33 lines
1.9 KiB
HTML
<!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">
|
|
<title>Splatoon 2 Map Schedules</title>
|
|
<meta name="description" content="Splatoon 2 map rotation, upcoming Salmon Run schedules, SplatNet gear, and Splatfest info.">
|
|
<meta property="og:title" content="Splatoon 2 Map Schedules">
|
|
<meta property="og:description" content="Current/upcoming maps and Salmon Run schedules.">
|
|
<meta property="og:image" content="https://splatoon2.ink/<%= require('../src/web/assets/icons/apple-touch-icon.png') %>">
|
|
<meta name="apple-mobile-web-app-capable" content="yes">
|
|
<meta name="apple-mobile-web-app-status-bar-style" content="black">
|
|
<meta name="apple-mobile-web-app-title" content="Splatoon2.ink">
|
|
<% for (var css in htmlWebpackPlugin.files.chunks.main.css) { %>
|
|
<link href="<%= htmlWebpackPlugin.files.chunks.main.css[css] %>" rel="stylesheet">
|
|
<% } %>
|
|
<link rel="apple-touch-icon" sizes="180x180" href="<%= require('../src/web/assets/icons/apple-touch-icon.png') %>">
|
|
<link rel="icon" type="image/png" sizes="32x32" href="<%= require('../src/web/assets/icons/favicon-32x32.png') %>">
|
|
<link rel="icon" type="image/png" sizes="16x16" href="<%= require('../src/web/assets/icons/favicon-16x16.png') %>">
|
|
<link rel="manifest" href="/manifest.json">
|
|
<meta name="msapplication-config" content="/browserconfig.xml">
|
|
<link rel="mask-icon" href="<%= require('../src/web/assets/icons/safari-pinned-tab.svg') %>" color="#ff470f">
|
|
<link rel="shortcut icon" href="<%= require('../src/web/assets/icons/favicon.ico') %>">
|
|
<meta name="theme-color" content="#cccccc">
|
|
</head>
|
|
<body>
|
|
<div id="app"></div>
|
|
<script src="<%= htmlWebpackPlugin.files.chunks.main.entry %>"></script>
|
|
<script async src='https://www.google-analytics.com/analytics.js'></script>
|
|
</body>
|
|
</html>
|