-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
17 changed files
with
124 additions
and
66 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
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
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
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
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
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 |
---|---|---|
@@ -1,19 +1,18 @@ | ||
|
||
<footer class="pt-[32px] px-[20px] border-t h-[150px] shadow-[0_-1px_0_0_#E8EBEF] body5 {{class}}"> | ||
<section class="flex w-full"> | ||
<footer class="border-t h-[150px] shadow-[0_-1px_0_0_#E8EBEF] body5 {{class}}"> | ||
<section class="m-auto flex w-full md:max-w-[1200px] pt-[32px] pb-[54px] px-[24px]"> | ||
<div class="flex flex-col"> | ||
<ul> | ||
<li> | ||
<a href="https://github.com/yeonjuan/html-eslint/issues" target="_blank noreferrer" class="text-slate-600">Report issue</a> | ||
</li> | ||
</ul> | ||
<span class="text-black-300">Copyright © 2023 html-eslint</span> | ||
<span class="text-black-500">Copyright © 2023 html-eslint</span> | ||
</div> | ||
<div class="ml-auto"> | ||
<a href="https://github.com/yeonjuan/html-eslint"> | ||
<img src="~/src/assets/github.svg" alt="github" width="19px" height="19px"> | ||
</a> | ||
|
||
</div> | ||
</section> | ||
</footer> |
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
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
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
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 |
---|---|---|
@@ -1,9 +1,9 @@ | ||
<!-- eslint-disable @html-eslint/require-title --> | ||
<script locals> | ||
module.exports = { | ||
version: locals.version | ||
} | ||
</script> | ||
<!-- eslint-disable @html-eslint/require-title --> | ||
<!DOCTYPE html> | ||
<html lang="en" class="light"> | ||
<head> | ||
|
@@ -35,9 +35,9 @@ | |
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> | ||
<link href="https://fonts.googleapis.com/css2?family=DM+Mono:wght@500&family=DM+Sans:opsz,[email protected],600;9..40,700&family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet"> | ||
</head> | ||
<body class="bg-white text-slate-950 text-base relative"> | ||
<module href="/components/header/header.html"></module> | ||
<main class="relative pt-[83px] px-[20px] md:flex" role="main"> | ||
<body class="text-base relative"> | ||
<module href="/components/header/header.html" locals='{"version": "{{version}}"}'></module> | ||
<main class="relative pt-[66px] px-[20px] md:flex" role="main"> | ||
<block name="menu"></block> | ||
<block name="nav"></block> | ||
<block name="content"></block> | ||
|
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
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
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
<div class="w-full p-4"> | ||
<div class="w-full"> | ||
<style> | ||
.CodeMirror { | ||
font-size: 14px; | ||
|
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
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 |
---|---|---|
@@ -1,11 +1,14 @@ | ||
<!doctype html> | ||
<extends src="components/layout.html"> | ||
<block name="meta"> | ||
<title>html-eslint</title> | ||
<link rel="canonical" href="https://html-eslint.org/"> | ||
</block> | ||
<block name="nav"></block> | ||
<block name="content"> | ||
<include src="components/home.html"></include> | ||
</block> | ||
<block name="footer"> | ||
<module href="/components/footer.html" locals='{"class":""}'></module> | ||
|
||
</block> | ||
</extends> |
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
Oops, something went wrong.