redo main/register page
This commit is contained in:
1 parent
eaa2febbf2
commit
1ad5eb654b
400 files changed
+93168
-323
No files matched your search
@@ -0,0 +1,10 @@
|
||||
<footer class="footer">
|
||||
<div class="row">
|
||||
<div class="large-12 columns">
|
||||
<h5>
|
||||
<a href="/OwlCarousel2/docs/support-contact.html">{{ pkg.author.name }}</a>
|
||||
<a id="custom-tweet-button" href="https://twitter.com/share?url=https://github.com/OwlCarousel2/OwlCarousel2&text={{ app.title }} - This is so awesome! " target="_blank"></a>
|
||||
</h5>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
@@ -0,0 +1,30 @@
|
||||
<meta charset="utf-8">
|
||||
<meta name="msapplication-tap-highlight" content="no"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
|
||||
<meta name="description" content="{{default description pkg.description}}">
|
||||
<meta name="author" content="{{ pkg.author.name }}">
|
||||
|
||||
<title>
|
||||
{{default title page.basename }} | {{ app.title }} | {{ pkg.version }}
|
||||
</title>
|
||||
|
||||
|
||||
<!-- Stylesheets -->
|
||||
<link href='https://fonts.googleapis.com/css?family=Lato:300,400,700,400italic,300italic' rel='stylesheet' type='text/css'>
|
||||
<link rel="stylesheet" href="{{assets}}/css/docs.theme.min.css">
|
||||
|
||||
<!-- Owl Stylesheets -->
|
||||
<link rel="stylesheet" href="{{assets}}/owlcarousel/assets/owl.carousel.min.css">
|
||||
<link rel="stylesheet" href="{{assets}}/owlcarousel/assets/owl.theme.default.min.css">
|
||||
|
||||
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
|
||||
<!--[if lt IE 9]>
|
||||
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
|
||||
<script src="https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js"></script>
|
||||
<![endif]-->
|
||||
|
||||
<!-- Favicons -->
|
||||
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="{{ assets }}/ico/apple-touch-icon-144-precomposed.png">
|
||||
<link rel="shortcut icon" href="{{ assets }}/ico/favicon.png">
|
||||
<link rel="shortcut icon" href="favicon.ico">
|
||||
@@ -0,0 +1,29 @@
|
||||
<header class="header">
|
||||
<div class="row">
|
||||
<div class="large-12 columns">
|
||||
<div class="brand left">
|
||||
<h3><a href="/OwlCarousel2/">owl.carousel.js</a></h3>
|
||||
</div>
|
||||
<a id="toggle-nav" class="right">
|
||||
<span></span><span></span><span></span>
|
||||
</a>
|
||||
<div class="nav-bar">
|
||||
<ul class="clearfix">
|
||||
<li{{#is nav "home"}} class="active"{{/is}}>
|
||||
<a href="/OwlCarousel2/index.html">Home</a>
|
||||
</li>
|
||||
<li{{#is nav "demos"}} class="active"{{/is}}>
|
||||
<a href="/OwlCarousel2/demos/demos.html">Demos</a>
|
||||
</li>
|
||||
<li{{#is nav "docs"}} class="active"{{/is}}>
|
||||
<a href="/OwlCarousel2/docs/started-welcome.html">Docs</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="https://github.com/OwlCarousel2/OwlCarousel2/archive/{{ pkg.version }}.zip">Download</a>
|
||||
<span class="download"></span>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
@@ -0,0 +1,42 @@
|
||||
|
||||
<div class="home-demo">
|
||||
<div class="row">
|
||||
<div class="large-12 columns">
|
||||
<h3>Demo</h3>
|
||||
<div class="owl-carousel">
|
||||
<div class="item"><h2>Swipe</h2></div>
|
||||
<div class="item"><h2>Drag</h2></div>
|
||||
<div class="item"><h2>Responsive</h2></div>
|
||||
<div class="item"><h2>CSS3</h2></div>
|
||||
<div class="item"><h2>Fast</h2></div>
|
||||
<div class="item"><h2>Easy</h2></div>
|
||||
<div class="item"><h2>Free</h2></div>
|
||||
<div class="item"><h2>Upgradable</h2></div>
|
||||
<div class="item"><h2>Tons of options</h2></div>
|
||||
<div class="item"><h2>Infinity</h2></div>
|
||||
<div class="item"><h2>Auto Width</h2></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script>
|
||||
var owl = $('.owl-carousel');
|
||||
|
||||
owl.owlCarousel({
|
||||
margin:10,
|
||||
loop:true,
|
||||
responsive:{
|
||||
0:{
|
||||
items:1
|
||||
},
|
||||
600:{
|
||||
items:2
|
||||
},
|
||||
1000:{
|
||||
items:3
|
||||
}
|
||||
}
|
||||
})
|
||||
|
||||
</script>
|
||||
@@ -0,0 +1,17 @@
|
||||
<div id="features">
|
||||
<div class="row">
|
||||
<div class="small-12 medium-9 small-centered columns">
|
||||
{{#each features}}
|
||||
<section class="row feature">
|
||||
<div class="medium-4 small-12 columns">
|
||||
<img src="{{../assets}}/img/{{image}}" alt="">
|
||||
</div>
|
||||
<div class="medium-8 small-12 columns">
|
||||
<h2>{{title}}</h2>
|
||||
<p>{{subtitle}}</p>
|
||||
</div>
|
||||
</section>
|
||||
{{/each}}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -0,0 +1,14 @@
|
||||
<section id="hero">
|
||||
<div class="row">
|
||||
<div class="large-8 medium-8 columns">
|
||||
<h1>{{ lead }}</h1>
|
||||
<h4>{{ tagline }}</h4>
|
||||
<a href="https://github.com/OwlCarousel2/OwlCarousel2/archive/{{ pkg.version }}.zip" class="hero-button">Download</a>
|
||||
<a href="{{ pkg.homepage }}" class="hero-button outline">Github</a>
|
||||
<p>{{ pkg.version }}</p>
|
||||
</div>
|
||||
<div class="large-4 medium-4 columns">
|
||||
<img class="owl-logo" src="{{assets}}/img/owl-logo.png" alt="mr. Owl">
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
@@ -0,0 +1,19 @@
|
||||
|
||||
|
||||
<section id="teaser-text">
|
||||
<div class="row">
|
||||
<div class="small-12 medium-11 small-centered columns">
|
||||
{{#markdown }}
|
||||
|
||||
-----
|
||||
|
||||
### Owl Carousel has been choosen as number one jQuery plugin by hundreds of developers. Now its time for a new version that comes with lots of new features and even more user friendly API.
|
||||
|
||||
Watch this space- we'll be launching soon :)
|
||||
|
||||
|
||||
{{/markdown }}
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
@@ -0,0 +1,3 @@
|
||||
<script src="{{assets}}/vendors/jquery.min.js"></script>
|
||||
<script src="{{assets}}/owlcarousel/owl.carousel.js"></script>
|
||||
|
||||
Whitespace-only changes.
@@ -0,0 +1,35 @@
|
||||
<ul class="side-nav">
|
||||
<li class="side-nav-head">Getting Started</li>
|
||||
{{#withSort pages "data.sort"}}
|
||||
{{#is data.subTitle "Getting Started"}}
|
||||
<li><a href="{{basename }}.html">{{data.title}}</a></li>
|
||||
{{/is}}
|
||||
{{/withSort}}
|
||||
</ul>
|
||||
|
||||
<ul class="side-nav">
|
||||
<li class="side-nav-head">API</li>
|
||||
{{#withSort pages "data.sort"}}
|
||||
{{#is data.subTitle "API"}}
|
||||
<li><a href="{{basename }}.html">{{data.title}}</a></li>
|
||||
{{/is}}
|
||||
{{/withSort}}
|
||||
</ul>
|
||||
|
||||
<ul class="side-nav">
|
||||
<li class="side-nav-head">Development</li>
|
||||
{{#withSort pages "data.sort"}}
|
||||
{{#is data.subTitle "Development"}}
|
||||
<li><a href="{{basename }}.html">{{data.title}}</a></li>
|
||||
{{/is}}
|
||||
{{/withSort}}
|
||||
</ul>
|
||||
|
||||
<ul class="side-nav">
|
||||
<li class="side-nav-head">Support</li>
|
||||
{{#withSort pages "data.sort"}}
|
||||
{{#is data.subTitle "Support"}}
|
||||
<li><a href="{{basename }}.html">{{data.title}}</a></li>
|
||||
{{/is}}
|
||||
{{/withSort}}
|
||||
</ul>
|
||||
@@ -0,0 +1,7 @@
|
||||
<section class="title">
|
||||
<div class="row">
|
||||
<div class="large-12 columns">
|
||||
<h1>{{ subTitle }}</h1>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
@@ -0,0 +1,3 @@
|
||||
<script src="{{assets}}/vendors/highlight.js"></script>
|
||||
<script src="{{assets}}/js/app.js"></script>
|
||||
{{!-- <script src="{{assets}}/js/foundation.min.js"></script> --}}
|
||||
Reference in new issue
Block a user