Skip to content

Commit

Permalink
New documentation!
Browse files Browse the repository at this point in the history
  • Loading branch information
hekigan committed Jul 1, 2017
1 parent 814a83d commit 9cdbd41
Show file tree
Hide file tree
Showing 99 changed files with 14,878 additions and 757 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ dist
node_modules
coverage
*.log
docs/.sass-cache
Binary file added docs/.jekyll-metadata
Binary file not shown.
63 changes: 63 additions & 0 deletions docs/LICENSE.txt

Large diffs are not rendered by default.

33 changes: 33 additions & 0 deletions docs/README.txt
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)
23 changes: 23 additions & 0 deletions docs/_config.yml
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
8 changes: 8 additions & 0 deletions docs/_includes/footer.html
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>&copy; Laurent Blanes. All rights reserved.</li>
</ul>
</div>
</section>
25 changes: 25 additions & 0 deletions docs/_includes/head.html
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>

26 changes: 26 additions & 0 deletions docs/_includes/header.html
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>

23 changes: 23 additions & 0 deletions docs/_layouts/default.html
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>
26 changes: 26 additions & 0 deletions docs/_layouts/landing-page.html
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>
24 changes: 24 additions & 0 deletions docs/_layouts/post.html
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">&larr; Previous post</a> {% endif %}
{% if page.next %}
<a href="{{ page.next.url }}" class="float-right">Next post &rarr;</a> {% endif %}
</footer>

</div>

</section>
Loading

0 comments on commit 9cdbd41

Please sign in to comment.