This commit is contained in:
parent
aef59e5b44
commit
f9b1457dea
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -4,3 +4,4 @@ build/
|
|||
.idea/
|
||||
# Local Netlify folder
|
||||
.netlify
|
||||
.DS_Store
|
|
@ -2,6 +2,7 @@ export default function(cfg) {
|
|||
cfg.addPassthroughCopy("site/assets/styles/main.css");
|
||||
cfg.addPassthroughCopy("site/assets/scripts/**/*.js");
|
||||
cfg.addPassthroughCopy("site/assets/data/*");
|
||||
cfg.addPassthroughCopy("site/assets/images/*");
|
||||
|
||||
return {
|
||||
dir: {
|
||||
|
|
BIN
site/assets/images/favicon.png
Normal file
BIN
site/assets/images/favicon.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 13 KiB |
|
@ -3,13 +3,15 @@
|
|||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Letterise</title>
|
||||
|
||||
<link rel="stylesheet" href="https://cdn.simplecss.org/simple.min.css">
|
||||
<link href="/assets/styles/main.css" rel="stylesheet">
|
||||
<title>Wordle Clone</title>
|
||||
<link rel="icon" href="/assets/images/favicon.png" type="image/png">
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<h1>Wordle Clone</h1>
|
||||
<h1>Letterise</h1>
|
||||
</header>
|
||||
|
||||
<main>
|
||||
|
|
Loading…
Reference in a new issue