-
Notifications
You must be signed in to change notification settings - Fork 33
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
99 changed files
with
14,878 additions
and
757 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 |
---|---|---|
|
@@ -4,3 +4,4 @@ dist | |
node_modules | ||
coverage | ||
*.log | ||
docs/.sass-cache |
Binary file not shown.
Large diffs are not rendered by default.
Oops, something went wrong.
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,33 @@ | ||
Read Only by HTML5 UP | ||
html5up.net | @n33co | ||
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license) | ||
|
||
|
||
Just a super simple single-page responsive template built for personal sites and portfolios | ||
(although it'd definitely work for other stuff too). Includes a contact form, pre-styled | ||
elements, and Sass sources. | ||
|
||
Demo images* courtesy of Unsplash, a radtastic collection of CC0 (public domain) images | ||
you can use for pretty much whatever. | ||
|
||
(* = Not included) | ||
|
||
Feedback, bug reports, and comments are not only welcome, but strongly encouraged :) | ||
|
||
AJ | ||
n33.co @n33co dribbble.com/n33 | ||
|
||
|
||
Credits: | ||
|
||
Demo Images: | ||
Unsplash (unsplash.com) | ||
|
||
Icons: | ||
Font Awesome (fortawesome.github.com/Font-Awesome) | ||
|
||
Other: | ||
jQuery (jquery.com) | ||
html5shiv.js (@afarkas @jdalton @jon_neal @rem) | ||
CSS3 Pie (css3pie.com) | ||
skel (getskel.com) |
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,23 @@ | ||
# Localhost : http://localhost:4000/vue-directive-tooltip/ | ||
|
||
# Site settings | ||
title: Vue Directive Tooltip | ||
email: | ||
description: > # this means to ignore newlines until "baseurl:" | ||
Tooltips made easy with popper.js | ||
baseurl: "/vue-directive-tooltip" # the subpath of your site, e.g. /blog/ | ||
url: "https://hekigan.github.io" # the base hostname & protocol for your site | ||
github_username: hekigan | ||
|
||
# Build settings | ||
# highlighter: rouge | ||
markdown: kramdown | ||
sass: | ||
sass_dir: _sass | ||
style: compressed | ||
|
||
# plugin | ||
plugins: | ||
- jekyll-gist | ||
|
||
lang: en |
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,8 @@ | ||
<!-- Footer --> | ||
<section id="footer"> | ||
<div class="container"> | ||
<ul class="copyright"> | ||
<li>© Laurent Blanes. All rights reserved.</li> | ||
</ul> | ||
</div> | ||
</section> |
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,25 @@ | ||
|
||
<head> | ||
<title>Vue Directive Tooltip</title> | ||
<meta http-equiv="content-type" content="text/html; charset=utf-8" /> | ||
<meta name="description" content="vue directive tooltip (with popper.js) - tooltips made simple" /> | ||
<meta name="keywords" content="vue, directive, tooltip, popper, javascript" /> | ||
<!--[if lte IE 8]><script src="css/ie/html5shiv.js"></script><![endif]--> | ||
<script src="https://unpkg.com/vue@2.2.6/dist/vue.js"></script> | ||
<script src="{{ site.baseurl }}/js/vueDirectiveTooltip.js"></script> | ||
<script src="{{ site.baseurl }}/js/jquery.min.js"></script> | ||
<script src="{{ site.baseurl }}/js/jquery.scrollzer.min.js"></script> | ||
<script src="{{ site.baseurl }}/js/jquery.scrolly.min.js"></script> | ||
<script src="{{ site.baseurl }}/js/skel.min.js"></script> | ||
<script src="{{ site.baseurl }}/js/skel-layers.min.js"></script> | ||
<script src="{{ site.baseurl }}/js/init.js"></script> | ||
<noscript> | ||
<link rel="stylesheet" href="{{ site.baseurl }}/css/skel.css" /> | ||
<link rel="stylesheet" href="{{ site.baseurl }}/css/style.css" /> | ||
<link rel="stylesheet" href="{{ site.baseurl }}/css/style-xlarge.css" /> | ||
</noscript> | ||
<link rel="stylesheet" href="{{ site.baseurl }}/css/index.css" /> | ||
<!--<link rel="stylesheet" href="{{ site.baseurl }}/css/highlight-syntax.css" />--> | ||
<!--[if lte IE 8]><link rel="stylesheet" href="css/ie/v8.css" /><![endif]--> | ||
</head> | ||
|
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,26 @@ | ||
<!-- Header --> | ||
<section id="header" class="skel-layers-fixed"> | ||
<header> | ||
<!--<span class="image avatar"><img src="{{ site.baseurl }}/images/avatar.jpg" alt="" /></span>--> | ||
<h1 id="logo"><a href="{{ site.baseurl }}/">Vue directive tooltip</a></h1> | ||
<p> | ||
Tooltips made easy with <a href="https://github.com/FezVrasta/popper.js" target="_blank">popper.js</a> | ||
</p> | ||
</header> | ||
<nav id="nav"> | ||
<ul> | ||
<li><a href="#installation">Installation</a></li> | ||
<li><a href="#usage">Basic usage</a></li> | ||
<li><a href="#positioning">Positioning</a></li> | ||
<li><a href="#events-triggers">Events / Triggers</a></li> | ||
<li><a href="#programmatic">Programmatic</a></li> | ||
<li><a href="#custom-css">Custom css / class</a></li> | ||
</ul> | ||
</nav> | ||
<footer> | ||
<ul class="icons"> | ||
<li><a href="https://github.com/hekigan/vue-directive-tooltip" class="icon fa-github"><span class="label">Github</span></a></li> | ||
</ul> | ||
</footer> | ||
</section> | ||
|
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,23 @@ | ||
<!DOCTYPE HTML> | ||
<html> | ||
{% include /head.html %} | ||
<body> | ||
<div id="wrapper"> | ||
{% include /header.html %} | ||
|
||
<!-- Main --> | ||
<div id="main"> | ||
{{ content }} | ||
|
||
</div> | ||
{% include /footer.html %} | ||
</div> | ||
<script> | ||
new Vue({ el: '#main', data() { | ||
return { | ||
visibility: false | ||
}; | ||
} }); | ||
</script> | ||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
|
||
{% include /head.html %} | ||
|
||
<body id="top"> | ||
|
||
{% include /header.html %} | ||
|
||
<!-- Banner --> | ||
<section id="banner"> | ||
<div class="inner"> | ||
<h2>This is Ion</h2> | ||
<p>A free responsive template by <a href="http://templated.co">TEMPLATED</a></p> | ||
<ul class="actions"> | ||
<li><a href="#content" class="button big special">Sign Up</a></li> | ||
<li><a href="#elements" class="button big alt">Learn More</a></li> | ||
</ul> | ||
</div> | ||
</section> | ||
{{ content }} | ||
{% include /footer.html %} | ||
|
||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
--- | ||
layout: default | ||
--- | ||
<section> | ||
<div class="container"> | ||
<header class="major"> | ||
<h2>{{ page.title }}</h2> | ||
<p class="post-meta">{{ page.date | date: "%b %-d, %Y" }}{% if page.author %} • {{ page.author }}{% endif %}{% if page.meta %} • {{ page.meta }}{% endif %}</p> | ||
</header> | ||
|
||
<section class="post-content"> | ||
{{ content }} | ||
</section> | ||
|
||
<footer> | ||
{% if page.previous %} | ||
<a href="{{ page.previous.url }}" class="float-left">← Previous post</a> {% endif %} | ||
{% if page.next %} | ||
<a href="{{ page.next.url }}" class="float-right">Next post →</a> {% endif %} | ||
</footer> | ||
|
||
</div> | ||
|
||
</section> |
Oops, something went wrong.