Skip to content

Commit

Permalink
Update index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
nilandev authored Oct 27, 2023
1 parent 8c70ca2 commit c9228f6
Showing 1 changed file with 59 additions and 4 deletions.
63 changes: 59 additions & 4 deletions index.html
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>

0 comments on commit c9228f6

Please sign in to comment.