-
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.
- Loading branch information
Showing
1 changed file
with
59 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,64 @@ | ||
<!doctype html> | ||
<html> | ||
--- | ||
template: index | ||
--- | ||
|
||
<!DOCTYPE html> | ||
<html class="is-index" data-template="index"> | ||
<head> | ||
<title>This is the title of the webpage!</title> | ||
<meta charset="UTF-8"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> | ||
<meta name="viewport" content="width=device-width"> | ||
<title>{{site.title}} - {{site.subtitle}}</title> | ||
<meta name="description" content="{{site.description}}"> | ||
|
||
<link rel="stylesheet" type="text/css" href="{{site.url}}/css/website.css?v={{ site.time | date: "%Y%m%d%H%M" }}"> | ||
|
||
<meta property="og:url" content="{{site.url}}"> | ||
<meta property="og:type" content="website"> | ||
<meta property="og:title" content="{{site.title}}"> | ||
<meta property="og:image" content="{{site.url}}/images/css-reference-share.png"> | ||
<meta property="og:image:type" content="image/png"> | ||
<meta property="og:image:width" content="1200"> | ||
<meta property="og:image:height" content="630"> | ||
<meta property="og:description" content="{{site.description}}"> | ||
|
||
<meta name="twitter:card" content="summary_large_image"> | ||
<meta name="twitter:site" content="@jgthms"> | ||
<meta name="twitter:creator" content="@jgthms"> | ||
<meta name="twitter:title" content="{{site.title}}"> | ||
<meta name="twitter:image" content="{{site.url}}/images/css-reference-share.png"> | ||
<meta name="twitter:description" content="{{site.description}}"> | ||
|
||
{% include favicons.html %} | ||
</head> | ||
<body> | ||
<p>This is an example paragraph. Anything in the <strong>body</strong> tag will appear on the page, just like this <strong>p</strong> tag and its contents.</p> | ||
<header class="header"> | ||
<div class="container"> | ||
<h1 class="header-figure"> | ||
<img src="{{site.url}}/images/css-reference-icon.png" alt="{{site.title}} icon"> | ||
<img src="{{site.url}}/images/css-reference-type.png" alt="{{site.title}} type"> | ||
</h1> | ||
<div class="header-content"> | ||
<div class="header-carbon"> | ||
{% include carbon.html %} | ||
</div> | ||
<div class="header-text"> | ||
<h2 class="header-title"> | ||
{{site.subtitle}} | ||
</h2> | ||
<p class="header-subtitle"> | ||
<strong>Learn by example</strong>: <a href="{{site.url}}">cssreference.io</a> is a free visual guide to CSS. It features the most popular <strong>properties</strong>, and explains them with illustrated and animated <strong>examples</strong>. | ||
</p> | ||
<footer class="header-share"> | ||
{% include social/button-twitter.html %} | ||
{% include social/button-facebook.html %} | ||
</footer> | ||
</div> | ||
</div> | ||
</div> | ||
</header> | ||
{% include ff.html %} | ||
<main class="index"> | ||
<h1>Hello World!</h1> | ||
</body> | ||
</html> |