demo.5
* removed double underscore (__) separators in class names * more LF CR to LF * new scss config variables * some little style changes
This commit is contained in:
parent
0a78f526f5
commit
8b81ed92e1
30 changed files with 1288 additions and 1262 deletions
|
|
@ -7,13 +7,7 @@
|
|||
{% block head %}
|
||||
<title>{% block title %}{% endblock %} - HIPPIE</title>
|
||||
|
||||
<meta name="author" content="Interaktionsweise">
|
||||
<meta name="description" content="hippie">
|
||||
<meta name="generator" content="Notepad++, Atom">
|
||||
<meta name="robots" content="noindex">
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=Edge;chrome=1" />
|
||||
{% include "hippie/partials/head-meta.njk" %}
|
||||
|
||||
<link rel="icon" href="./favicon.ico" type="image/vnd.microsoft.icon">
|
||||
<link rel="shortcut icon" type="image/x-icon" href="./favicon.ico" />
|
||||
|
|
|
|||
|
|
@ -16,13 +16,7 @@
|
|||
<!--Local alternative: <script src="./code/html5shiv.min.js"></script>-->
|
||||
<!--Only use one of the above!-->
|
||||
|
||||
<meta name="author" content="Interaktionsweise">
|
||||
<meta name="description" content="hippie example">
|
||||
<meta name="generator" content="Notepad++, Atom">
|
||||
<meta name="robots" content="noindex">
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=Edge;chrome=1" />
|
||||
{% include "hippie/partials/head-meta.njk" %}
|
||||
|
||||
<link rel="icon" href="./favicon.ico" type="image/vnd.microsoft.icon">
|
||||
<link rel="shortcut icon" type="image/x-icon" href="./favicon.ico" />
|
||||
|
|
@ -33,7 +27,7 @@
|
|||
{% endblock %}
|
||||
</head>
|
||||
|
||||
<body id="{{ pageId }}" class="body__demo">
|
||||
<body id="{{ pageId }}" class="{{ pageClass }} body_demo">
|
||||
{% include "hippie/partials/page-hover.njk" %}
|
||||
<div id="root">
|
||||
<header id="js_head" class="header_site">
|
||||
|
|
|
|||
|
|
@ -7,13 +7,7 @@
|
|||
{% block head %}
|
||||
<title>{% block title %}{% endblock %}</title>
|
||||
|
||||
<meta name="author" content="Interaktionsweise">
|
||||
<meta name="description" content="hippie http status">
|
||||
<meta name="generator" content="Notepad++, Atom">
|
||||
<meta name="robots" content="noindex">
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=Edge;chrome=1" />
|
||||
{% include "hippie/partials/head-meta.njk" %}
|
||||
|
||||
<link rel="icon" href="./favicon.ico" type="image/vnd.microsoft.icon">
|
||||
<link rel="shortcut icon" type="image/x-icon" href="./favicon.ico" />
|
||||
|
|
|
|||
8
source/templates/hippie/partials/head-meta.njk
Normal file
8
source/templates/hippie/partials/head-meta.njk
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
<!-- head-meta.partial -->
|
||||
<meta name="author" content="Interaktionsweise">
|
||||
<meta name="description" content="hippie">
|
||||
<meta name="generator" content="Notepad++, Atom">
|
||||
<meta name="robots" content="noindex">
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=Edge;chrome=1" />
|
||||
|
|
@ -1,16 +1,21 @@
|
|||
<!-- nav-page-meta.partial -->
|
||||
<nav class="nav__page_meta">
|
||||
<nav class="nav_page_meta">
|
||||
<ul>
|
||||
<li class="magic">
|
||||
<a href="#begin" id="js_scrolltop" class="a_button_meta">
|
||||
<div class="sprite__img demo__sprite_up"></div>
|
||||
<div class="sprite_img demo__sprite_up"></div>
|
||||
{# <img src="../art/up.png" alt="" width="32" height="64"> #}
|
||||
</a>
|
||||
</li>
|
||||
<li><button class="">Show Meta Information</button></li>
|
||||
<li>
|
||||
{# <button class="">Show Meta Information</button> #}
|
||||
<a href="#meta" class="a_button_meta">
|
||||
<div class="sprite_img demo__sprite_meta meta"></div>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="#end" id="js_scrolldown" class="a_button_meta">
|
||||
<div class="sprite__img demo__sprite_down"></div>
|
||||
<div class="sprite_img demo__sprite_down"></div>
|
||||
{# <img src="../art/down.png" alt="" width="32" height="32"> #}
|
||||
</a>
|
||||
</li>
|
||||
|
|
|
|||
|
|
@ -1,2 +1,2 @@
|
|||
<!-- page-hover.partial -->
|
||||
<div id="js_tph" class="layer__hover"></div>
|
||||
<div id="js_tph" class="layer_hover"></div>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue