-
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.
Starting to write an article :)
- Loading branch information
Showing
3 changed files
with
111 additions
and
4 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,99 @@ | ||
<html lang="en"> | ||
<head> | ||
<meta http-equiv="content-type" content="text/html; charset=UTF-8"> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<meta name="description" content=""> | ||
<!-- Page Title --> | ||
<title>Article: How this website works</title> | ||
|
||
<link rel="stylesheet" href="https://early.webawesome.com/[email protected]/dist/themes/default.css" /> | ||
<link rel="stylesheet" href="/fontawesome/css/all.css"/> | ||
<link rel="stylesheet" href="/style/docs.css"/> | ||
|
||
<script type="module" src="https://early.webawesome.com/[email protected]/dist/webawesome.loader.js"></script> | ||
<script type="module" src="/assets/scripts/color-scheme.js"></script> | ||
<script> | ||
document.documentElement.classList.toggle( | ||
'wa-theme-default-dark', | ||
sessionStorage.getItem('colorScheme') === 'dark' || window.matchMedia('(prefers-color-scheme: dark)').matches | ||
); | ||
</script> | ||
|
||
</head> | ||
<body class="layout-page-outline"> | ||
<wa-page view="desktop"> | ||
<header slot="header"> | ||
<div id="docs-branding"> | ||
<wa-button appearance="text" data-toggle-nav> | ||
<wa-icon name="bars" label="Toggle navigation" style="padding-top: 12.5px;"></wa-icon> | ||
</wa-button> | ||
<a href="/" style="text-decoration:none;"> | ||
<wa-avatar image="\images\icontorvo.png" shape="rounded" label="stylized portrait of ne with purple hair and my two previous cats"></wa-avatar> | ||
<span style="vertical-align:middle; font-size: 30px; font-weight: bold;">Torvos.ca</span> | ||
</a> | ||
</div> | ||
|
||
<div id="docs-toolbar"> | ||
<wa-dropdown id="color-scheme-selector"> | ||
<wa-button slot="trigger" appearance="tinted" size="small" caret> | ||
<wa-icon class="only-light" slot="prefix" name="sun" variant="regular"></wa-icon> | ||
<wa-icon class="only-dark" slot="prefix" name="moon" variant="regular"></wa-icon> | ||
<span class="only-light only-desktop">Light</span> | ||
<span class="only-dark only-desktop">Dark</span> | ||
</wa-button> | ||
<wa-menu> | ||
<wa-menu-item type="checkbox" value="light">Light</wa-menu-item> | ||
<wa-menu-item type="checkbox" value="dark">Dark</wa-menu-item> | ||
<wa-divider></wa-divider> | ||
<wa-menu-item type="checkbox" value="auto">System</wa-menu-item> | ||
</wa-menu> | ||
</wa-dropdown> | ||
</div> | ||
</header> | ||
|
||
<aside slot="navigation" id="sidebar" class="docs-aside" data-remember-scroll> | ||
<wa-icon-button id="sidebar-close-button" name="xmark" label="Close" data-drawer="close"></wa-icon-button> | ||
<nav> | ||
<!-- Left Hand Menu --> | ||
<h2>Site Menu</h2> | ||
<ul> | ||
<li><a href="/index.html" class="current">Home</a></li> | ||
<li><a href="/about.html">About Me</a></li> | ||
</ul> | ||
<h2>Articles</h2> | ||
<ul> | ||
<li><a href="/articles/webstie.html">How this website works</a></li> | ||
</ul> | ||
</nav> | ||
</aside> | ||
|
||
<!-- Right Hand Menu --> | ||
<aside slot="aside" id="outline" class="docs-aside"> | ||
<nav id="outline-standard" class="outline-links"> | ||
<!--<h2><a href="#content">Summary</a></h2> | ||
<ul> | ||
<li data-level="2"><a href="#second-heading">something</a></li> | ||
</ul>--> | ||
</nav> | ||
</aside> | ||
|
||
<main id="content"> | ||
<!-- Mobile Page Menu --> | ||
<nav id="outline-expandable"> | ||
<!--<details class="outline-links"> | ||
<summary>Summary</summary> | ||
<ul> | ||
<li data-level="2"><a href="#second-heading">something</a></li> | ||
</ul> | ||
</details>--> | ||
</nav> | ||
|
||
<!-- Page Content --> | ||
<h1 class="title">How this website works</h1> | ||
<p></p> | ||
</main> | ||
|
||
</wa-page> | ||
</body> | ||
</html> |
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