-
Notifications
You must be signed in to change notification settings - Fork 1
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
0 parents
commit 323eb4a
Showing
95 changed files
with
13,072 additions
and
0 deletions.
There are no files selected for viewing
Binary file not shown.
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 @@ | ||
node_modules |
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,3 @@ | ||
# Joule Splash | ||
|
||
Splash page for the [Joule extension](https://github.com/wbobeirne/joule-extension). I'm incredibly lazy, so this came from a themeforest theme that has been altered to work for Joule. Not much to be said for instructions other than to run yarn dev for scss compiling and open up index.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,186 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<!-- Required meta tags --> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | ||
<title>Joule - Contact Us</title> | ||
<!-- Meta Share --> | ||
<meta property="og:title" content="Joule - Contact Us" /> | ||
<meta property="og:type" content="website" /> | ||
<meta property="og:image" content="images/hero.jpg" /> | ||
<!-- CSS Files --> | ||
<link href="https://fonts.googleapis.com/css?family=Product+Sans:300,400,700" rel="stylesheet"> | ||
<!-- build:css css/app.min.css --> | ||
<!-- Bootstrap CSS --> | ||
<link rel="stylesheet" href="css/global/bootstrap.min.css"> | ||
<!-- Plugins --> | ||
<link rel="stylesheet" href="css/global/plugins/icon-font.css"> | ||
<link rel="stylesheet" href="css/global/plugins/font-awesome.min.css"> | ||
<!-- Main CSS --> | ||
<link rel="stylesheet" href="css/style.css"> | ||
<!-- Favicons & visuals --> | ||
<link rel="manifest" href="/manifest.json"> | ||
<link rel="apple-touch-icon" sizes="57x57" href="/favicons/apple-icon-57x57.png"> | ||
<link rel="apple-touch-icon" sizes="60x60" href="/favicons/apple-icon-60x60.png"> | ||
<link rel="apple-touch-icon" sizes="72x72" href="/favicons/apple-icon-72x72.png"> | ||
<link rel="apple-touch-icon" sizes="76x76" href="/favicons/apple-icon-76x76.png"> | ||
<link rel="apple-touch-icon" sizes="114x114" href="/favicons/apple-icon-114x114.png"> | ||
<link rel="apple-touch-icon" sizes="120x120" href="/favicons/apple-icon-120x120.png"> | ||
<link rel="apple-touch-icon" sizes="144x144" href="/favicons/apple-icon-144x144.png"> | ||
<link rel="apple-touch-icon" sizes="152x152" href="/favicons/apple-icon-152x152.png"> | ||
<link rel="apple-touch-icon" sizes="180x180" href="/favicons/apple-icon-180x180.png"> | ||
<link rel="icon" type="image/png" sizes="192x192" href="/favicons/android-icon-192x192.png"> | ||
<link rel="icon" type="image/png" sizes="32x32" href="/favicons/favicon-32x32.png"> | ||
<link rel="icon" type="image/png" sizes="96x96" href="/favicons/favicon-96x96.png"> | ||
<link rel="icon" type="image/png" sizes="16x16" href="/favicons/favicon-16x16.png"> | ||
<meta name="msapplication-TileImage" content="/favicons/ms-icon-144x144.png"> | ||
<meta name="msapplication-TileColor" content="#7642FF"> | ||
<meta name="theme-color" content="#7642FF"> | ||
</head> | ||
|
||
<body data-spy="scroll" data-target="#site-nav" data-offset="80" data-scroll-animation="true"> | ||
<header id="home" data-parallax="scroll" data-speed="0.5" data-image-src="images/hero.jpg"> | ||
<!-- navbar --> | ||
<nav class="navbar navbar-expand-lg navbar-light bg-light"> | ||
<div class="container"> | ||
<a class="navbar-brand" href="/"> | ||
<h3 class="gradient-mask">Joule</h3> | ||
</a> | ||
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#site-nav" aria-controls="site-nav" aria-expanded="false" aria-label="Toggle navigation"> | ||
<span class="navbar-toggler-icon"></span> | ||
</button> | ||
|
||
<div class="collapse navbar-collapse" id="site-nav"> | ||
<ul class="navbar-nav text-sm-left ml-auto"> | ||
<li class="nav-item"> | ||
<a class="nav-link" href="/#features">Features</a> | ||
</li> | ||
<li class="nav-item"> | ||
<a class="nav-link" href="/faq.html">FAQ</a> | ||
</li> | ||
<li class="nav-item"> | ||
<a class="nav-link" href="/contact.html">Contact</a> | ||
</li> | ||
|
||
<li class="nav-item text-center"> | ||
<a href="#" data-install-link class="btn align-middle btn-primary my-2 my-lg-0"> | ||
Install now | ||
</a> | ||
</li> | ||
</ul> | ||
|
||
</div> | ||
</div> | ||
</nav> | ||
<!-- // end navbar --> | ||
<!-- hero --> | ||
<section class="jumbotron sub-page text-center d-flex align-items-center"> | ||
<div class="container"> | ||
<h1 class="display-4 mb-0">Contact Us</h1> | ||
</div> | ||
</section> | ||
<!-- // end hero --> | ||
</header> | ||
|
||
|
||
<!-- // main content --> | ||
<div class="section my-5"> | ||
<div class="container"> | ||
<div class="row text-center"> | ||
<div class="col-sm"> | ||
<h3>Issue or feature request?</h3> | ||
<p> | ||
Hop into the Github issue queue and let us know! | ||
</p> | ||
<a | ||
href="https://github.com/wbobeirne/joule-extension/issues" | ||
target="_blank" | ||
class="btn btn-xl btn-primary mr-2 mb-5" | ||
> | ||
<i class="fa fa-lg fa-github mr-1"></i> Github Issue Queue | ||
</a> | ||
</div> | ||
<div class="col-sm"> | ||
<h3>Just want to chat?</h3> | ||
<p> | ||
Shoot a message on twitter | ||
</p> | ||
<a | ||
href="https://github.com/wbobeirne/joule-extension/issues" | ||
target="_blank" | ||
class="btn btn-xl btn-primary mr-2 mb-5" | ||
> | ||
<i class="fa fa-lg fa-twitter mr-1"></i> @wbobeirne on Twitter | ||
</a> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
<!-- // end main content --> | ||
|
||
<!-- // Footer --> | ||
<div class="section bg-light mt-4" id="footer"> | ||
<div class="container"> | ||
<div class="row"> | ||
<div class="col-sm-4"> | ||
<p class="text-muted mr-3"> | ||
<small> | ||
Joule is an open-source chrome extension that | ||
brings the Lightning network to your browser. It | ||
was made with ⚡ & ❤️ in New York. | ||
</small> | ||
</p> | ||
<p class="mr-3"> | ||
<a href="#" data-install-link target="_blank"> | ||
Install now → | ||
</a> | ||
</p> | ||
<!-- // end .lead --> | ||
</div> | ||
<!-- // end .col-sm-3 --> | ||
<div class="col-sm-4 text-center"> | ||
<h3> | ||
Joule | ||
</h3> | ||
<small class="text-muted"> | ||
Copyright © | ||
<script type="text/javascript"> | ||
document.write(new Date().getFullYear()); | ||
</script> | ||
All rights reserved. Joule | ||
</small> | ||
</div> | ||
<!-- // end .col-sm-3 --> | ||
<div class="col-sm-4"> | ||
<ul class="list-unstyled footer-links"> | ||
<li><a href="#portfolio">FAQ</a></li> | ||
<li><a href="#contact">Contact</a></li> | ||
<li><a href="https://github.com/wbobeirne">Github</a></li> | ||
<li><a href="https://twitter.com/wbobeirne">Twitter</a></li> | ||
</ul> | ||
</div> | ||
<!-- // end .col-sm-3 --> | ||
</div> | ||
<!-- // end .row --> | ||
<div class=" text-center"> | ||
|
||
</div> | ||
</div> | ||
<!-- // end .container --> | ||
</div> | ||
|
||
<!-- // end #about.section --> | ||
<!-- // end .agency --> | ||
<!-- build:js js/app.min.js --> | ||
<!-- jQuery first, then Tether, then Bootstrap JS. --> | ||
<script src="js/global/jquery-3.2.1.min.js"></script> | ||
<!-- Bootstrap JS --> | ||
<script src="js/global/bootstrap.bundle.min.js"></script> | ||
<!-- Main JS --> | ||
<script src="js/script.js"></script> | ||
<!-- /build --> | ||
</body> | ||
|
||
</html> |
Empty file.
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file not shown.
Binary file not shown.
Oops, something went wrong.