Skip to content
This repository was archived by the owner on Sep 13, 2023. It is now read-only.

Commit 16f7d86

Browse files
committed
feat(docs): init jekyll website
1 parent 2fc9a37 commit 16f7d86

File tree

228 files changed

+53146
-10
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

228 files changed

+53146
-10
lines changed

.gitignore

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,14 @@ dist/web/*
55
build/*
66
!build/icons
77
coverage
8-
node_modules/
8+
**/node_modules/
99
npm-debug.log
1010
npm-debug.log.*
1111
thumbs.db
1212
!.gitkeep
13+
docs/.sass-cache
14+
docs/_site
15+
node_modules
16+
**/*.DS_Store
17+
**/.idea
18+
**/*.iml

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,12 @@ A simple code snippet manager for developers built with Electron & Vue.js 🚀
1919

2020
The aim of this project is to be more efficient by providing a pretty cool : a "bloc-notes" for developers 😃
2121

22-
## Build Setup
22+
## Contributing
23+
24+
For the moment, the project is pretty young. But if we work together to build the "bloc-notes" we dream, we can build pretty things for sure !
25+
So, feel free to contribute. Follow this [guide](CONTRIBUTING.md) 🤓
26+
27+
### Build Setup
2328

2429
``` bash
2530
# install dependencies
@@ -39,11 +44,6 @@ npm run lint
3944

4045
```
4146

42-
## Contributing
43-
44-
For the moment, the project is pretty young. But if we work together to build the "bloc-notes" we dream, we can build pretty things for sure !
45-
So, feel free to contribute. Follow this [guide](CONTRIBUTING.md) 🤓
46-
4747
---
4848

4949
This project was generated with [electron-vue](https://github.com/SimulatedGREG/electron-vue)@[1c165f7](https://github.com/SimulatedGREG/electron-vue/tree/1c165f7c5e56edaf48be0fbb70838a1af26bb015) using [vue-cli](https://github.com/vuejs/vue-cli). Documentation about the original structure can be found [here](https://simulatedgreg.gitbooks.io/electron-vue/content/index.html).

docs/LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
The MIT License
2+
3+
Copyright (c) 2017-2018 Food Limit.
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in
13+
all copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21+
THE SOFTWARE.

docs/README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# food-limit.github.io
2+
3+
Official website of Food Limit
4+
5+
## Special thanks
6+
7+
Built with [Jekyll](https://jekyllrb.com/). Thanks to [Antonio Trento](https://it.linkedin.com/in/antoniotrento) for this theme
8+
9+
This Jekyll template was created to develop, landing pages, squeeze pages, portfolio and blog or all the above.

docs/_config.yml

Lines changed: 29 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,29 @@
1-
theme: jekyll-theme-minimal
1+
# Site settings
2+
title: Code Notes, the code snippet manager for developers
3+
4+
description: A simple code snippet manager for developers built with Electron & Vue.js 🚀
5+
6+
baseurl: ""
7+
url: "https://food-limit.github.io"
8+
9+
#Google Ad Words Data from scripts code (using Google responsive options) and ad client
10+
#data-ad-slot: 0123456789
11+
#data-ad-client: ca-pub-ABCD
12+
# google_ad_client: ca-pub-7380281265540998
13+
14+
google_analytics: "UA-113243461-1"
15+
#addthis_id: ra-xxxxxxxxxxxx
16+
#disqus_account: xxxxxx
17+
18+
# Social networks usernames (many more available: flickr, dribbble, pinterest, instagram, tumblr, linkedin, etc.) see all icon at fontawesome.io
19+
social:
20+
- title: github
21+
url: http://github.com/lauthieb/code-notes
22+
23+
# Build settings
24+
markdown: kramdown
25+
highlighter: rouge
26+
permalink: pretty
27+
paginate: 5
28+
exclude: ["less","node_modules","gulpfile.js","package.json","README.md"]
29+
gems: [jekyll-paginate, jekyll-feed]

docs/_includes/contact.html

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<section id="contact" class="contact">
2+
<div class="container">
3+
<h2>Feel free to contribute <i class="fa fa-heart"></i></h2>
4+
<ul class="list-inline list-social">
5+
{% for network in site.social %}
6+
<li class="social-{{ network.title }}">
7+
<a href="{{ network.url }}" class="btn-social btn-outline" target="_blank"><i class="fa fa-fw fa-{{ network.title }}"></i></a>
8+
</li>
9+
{% endfor %}
10+
</ul>
11+
</div>
12+
</section>
13+
<footer>
14+
<div class="container">
15+
<p>&copy; 2018 Code Notes. Built with <i class="fa fa-heart"></i> by Laurent Thiebault on <a target="_blank" rel="nofollow" href="https://github.com/lauthieb/code-notes">Github</a>. Thanks to <a target="_blank" rel="nofollow" href="https://it.linkedin.com/in/antoniotrento">Antonio Trento</a> for this theme. MIT License.</p>
16+
</div>
17+
</footer>

docs/_includes/download.html

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<section id="download" class="download bg-primary text-center">
2+
<div class="container">
3+
<div class="row">
4+
<div class="col-md-8 col-md-offset-2">
5+
<h2 class="section-heading">Download now</h2>
6+
<p>Version 1.0.0</p>
7+
<div class="badges">
8+
<ul class="list-inline">
9+
<li>
10+
<a class="download-link" href="https://github.com/lauthieb/code-notes/releases/download/untagged-41f56eb67a3894fc9f38/bloc-codes-1.0.0-mac.zip" target="_blank"><i class="fa fa-fw fa-apple"></i></a>
11+
<a class="download-link" href="" target="_blank"><i class="fa fa-fw fa-linux"></i></a>
12+
</li>
13+
</ul>
14+
</div>
15+
</div>
16+
</div>
17+
</div>
18+
</section>

docs/_includes/feature.html

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
<section id="why">
2+
<div class="container">
3+
<div class="row">
4+
<div class="col-lg-12 text-center">
5+
<h2 class="section-heading">At Your Service</h2>
6+
<hr class="primary">
7+
<br />
8+
</div>
9+
</div>
10+
</div>
11+
<div class="container">
12+
<div class="row">
13+
<div class="col-lg-3 col-md-6 text-center">
14+
<div class="service-box">
15+
<i class="fa fa-4x fa-save wow bounceIn text-primary"></i>
16+
<h3>Save your snippets</h3>
17+
</div>
18+
</div>
19+
<div class="col-lg-3 col-md-6 text-center">
20+
<div class="service-box">
21+
<i class="fa fa-4x fa-globe wow bounceIn text-primary" data-wow-delay=".1s"></i>
22+
<h3>Filter by languages</h3>
23+
</div>
24+
</div>
25+
<div class="col-lg-3 col-md-6 text-center">
26+
<div class="service-box">
27+
<i class="fa fa-4x fa-clipboard wow bounceIn text-primary" data-wow-delay=".2s"></i>
28+
<h3>Copy to clipboard</h3>
29+
</div>
30+
</div>
31+
<div class="col-lg-3 col-md-6 text-center">
32+
<div class="service-box">
33+
<i class="fa fa-4x fa-heart wow bounceIn text-primary" data-wow-delay=".3s"></i>
34+
<h3>Made with Love</h3>
35+
</div>
36+
</div>
37+
</div>
38+
</div>
39+
</section>

docs/_includes/head.html

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
<head>
2+
3+
<meta charset="utf-8">
4+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
5+
<meta name="viewport" content="width=device-width, initial-scale=1">
6+
<meta name="description" content="">
7+
<meta name="author" content="">
8+
9+
<title>{% if page.title %}{{ page.title }}{% else %}{{ site.title }}{% endif %}</title>
10+
11+
<!-- Bootstrap Core CSS -->
12+
<link rel="stylesheet" href="vendor/bootstrap/css/bootstrap.min.css" type="text/css">
13+
14+
<!-- Custom Fonts -->
15+
<link href="https://fonts.googleapis.com/css?family=Lato" rel="stylesheet">
16+
<link href="https://fonts.googleapis.com/css?family=Catamaran:100,200,300,400,500,600,700,800,900" rel="stylesheet">
17+
<link href="https://fonts.googleapis.com/css?family=Muli" rel="stylesheet">
18+
19+
<!-- Plugin CSS -->
20+
<link rel="stylesheet" href="css/animate.min.css" type="text/css">
21+
<link rel="stylesheet" href="vendor/font-awesome/css/font-awesome.min.css">
22+
<link rel="stylesheet" href="vendor/simple-line-icons/css/simple-line-icons.css">
23+
<link rel="stylesheet" href="vendor/device-mockups/device-mockups.min.css">
24+
25+
<!-- Custom CSS
26+
<link rel="stylesheet" href="css/main.css" type="text/css"> -->
27+
<link href="css/main.css" rel="stylesheet">
28+
29+
<link rel="icon" href="img/favicon.ico" />
30+
31+
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
32+
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
33+
<!--[if lt IE 9]>
34+
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
35+
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
36+
<![endif]-->
37+
38+
<!-- Google ADS mobile block -->
39+
{% if site.google_ad_client %}
40+
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
41+
<script>
42+
(adsbygoogle = window.adsbygoogle || []).push({
43+
google_ad_client: "{{ site.google_ad_client }}",
44+
enable_page_level_ads: true
45+
});
46+
</script>
47+
{% endif %}
48+
49+
{% if site.addthis_id %}
50+
<!-- Go to www.addthis.com/dashboard to customize your tools -->
51+
<script type="text/javascript" src="//s7.addthis.com/js/300/addthis_widget.js#pubid={{ site.addthis_id }}"></script>
52+
{% endif %}
53+
54+
</head>

docs/_includes/header.html

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<header>
2+
<div class="container">
3+
<div class="row">
4+
<div class="col-sm-6">
5+
<div class="header-content">
6+
<div class="header-content-inner">
7+
<h1>A simple code snippet manager for developers built with Electron & Vue.js 🚀</h1>
8+
<a href="#why" class="btn btn-outline btn-xl page-scroll">Tell me more !</a>
9+
</div>
10+
</div>
11+
</div>
12+
<div class="col-sm-6">
13+
<div class="header-content">
14+
<div class="header-content-inner">
15+
<img id="screen" src="img/screen.png" class="img-responsive" alt="">
16+
</div>
17+
</div>
18+
</div>
19+
</div>
20+
</div>
21+
</header>

docs/_includes/nav.html

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
<nav id="mainNav" class="navbar navbar-default navbar-fixed-top">
2+
<div class="container">
3+
<!-- Brand and toggle get grouped for better mobile display -->
4+
<div class="navbar-header">
5+
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse"
6+
data-target="#bs-example-navbar-collapse-1">
7+
<span class="sr-only">Toggle navigation</span> Menu <i class="fa fa-bars"></i>
8+
</button>
9+
<a class="navbar-brand page-scroll" href="#page-top">Code Notes</a>
10+
</div>
11+
12+
<!-- Collect the nav links, forms, and other content for toggling -->
13+
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
14+
<ul class="nav navbar-nav navbar-right">
15+
<li>
16+
<a class="page-scroll" href="#why">Features</a>
17+
</li>
18+
<li>
19+
<a class="page-scroll" href="#download">Download</a>
20+
</li>
21+
<li>
22+
<a class="page-scroll" href="https://github.com/lauthieb/code-notes" target="_blank">Contribute</a>
23+
</li>
24+
</ul>
25+
</div>
26+
</div>
27+
</nav>

docs/_includes/scripts.html

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
<!-- jQuery -->
2+
<script src="js/jquery.js"></script>
3+
4+
<!-- Bootstrap Core JavaScript
5+
<script src="js/bootstrap.min.js"></script> -->
6+
7+
<!-- Plugin JavaScript -->
8+
<script src="js/jquery.easing.min.js"></script>
9+
<script src="js/jquery.fittext.js"></script>
10+
<script src="js/wow.min.js"></script>
11+
12+
<!-- Custom Theme JavaScript -->
13+
<script src="js/creative.js"></script>
14+
15+
<!-- jQuery
16+
<script src="vendor/jquery/jquery.min.js"></script> -->
17+
18+
<!-- Bootstrap Core JavaScript -->
19+
<script src="vendor/bootstrap/js/bootstrap.min.js"></script>
20+
21+
<!-- Plugin JavaScript -->
22+
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-easing/1.3/jquery.easing.min.js"></script>
23+
24+
<!-- Theme JavaScript -->
25+
<script src="js/new-age.min.js"></script>
26+
27+
{% if site.google_analytics %}
28+
<script type="text/javascript">
29+
var _gaq = _gaq || [];
30+
_gaq.push(['_setAccount', '{{ site.google_analytics }}']);
31+
_gaq.push(['_trackPageview']);
32+
(function () {
33+
var ga = document.createElement('script');
34+
ga.type = 'text/javascript';
35+
ga.async = true;
36+
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
37+
var s = document.getElementsByTagName('script')[0];
38+
s.parentNode.insertBefore(ga, s);
39+
})();
40+
</script>
41+
{% endif %}

docs/_layouts/front.html

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
4+
{% include head.html %}
5+
6+
<body id="page-top">
7+
{% include nav.html %}
8+
{% include header.html %}
9+
{% include feature.html %}
10+
{% include download.html %}
11+
{% include contact.html %}
12+
{% include scripts.html %}
13+
</body>
14+
15+
</html>

0 commit comments

Comments
 (0)