Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(sass): update depreciated division on dart sass #28

Merged
merged 3 commits into from
Nov 2, 2021
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix(layout): add ico layout
  • Loading branch information
theo-stocchetti committed Nov 2, 2021
commit ac9c5776dac710ab59c57ab5e249f8005f73f008
31 changes: 31 additions & 0 deletions src/layouts/ico.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Krypton</title>

<link rel="icon" type="image/png" href="img/favicon.png" />
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css?family=Cabin" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,400" rel="stylesheet">

<link rel="stylesheet" href="{{root}}/css/app.css">
<link rel="stylesheet" type="text/css" href="{{root}}/css/main.css">
</head>

<body>

{{> pageloader}}
{{> body}}
{{> footer}}
{{> backtotop}}

<script src="https://cdn.jsdelivr.net/particles.js/2.0.0/particles.min.js"></script>
<script src="./js/bundle.js"></script>

</body>

</html>