freelancer-theme-jekyll 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/README.md +32 -0
- data/_includes/about.html +24 -0
- data/_includes/contact.html +54 -0
- data/_includes/contact_disqus.html +16 -0
- data/_includes/contact_static.html +49 -0
- data/_includes/css/bootstrap.min.css +7 -0
- data/_includes/css/main.css +457 -0
- data/_includes/footer.html +47 -0
- data/_includes/head.html +32 -0
- data/_includes/header.html +15 -0
- data/_includes/js.html +26 -0
- data/_includes/js_disqus.html +21 -0
- data/_includes/modals.html +48 -0
- data/_includes/nav.html +35 -0
- data/_includes/portfolio_grid.html +26 -0
- data/_layouts/default.html +22 -0
- data/_layouts/style.css +2 -0
- data/_posts/2014-07-13-project-6.markdown +12 -0
- data/_posts/2014-07-14-project-5.markdown +12 -0
- data/_posts/2014-07-15-project-4.markdown +12 -0
- data/_posts/2014-07-16-project-3.markdown +12 -0
- data/_posts/2014-07-17-project-2.markdown +12 -0
- data/_posts/2014-07-18-project-1.markdown +12 -0
- metadata +193 -0
@@ -0,0 +1,47 @@
|
|
1
|
+
<!-- Footer -->
|
2
|
+
<footer class="text-center">
|
3
|
+
<div class="footer-above">
|
4
|
+
<div class="container">
|
5
|
+
<div class="row">
|
6
|
+
<div class="footer-col col-md-4">
|
7
|
+
<h3>{{ site.footer.location }}</h3>
|
8
|
+
<p>
|
9
|
+
{% for adress in site.address %}
|
10
|
+
{{ adress.line }} <br>
|
11
|
+
{% endfor %}
|
12
|
+
</p>
|
13
|
+
</div>
|
14
|
+
<div class="footer-col col-md-4">
|
15
|
+
<h3>{{ site.footer.social }}</h3>
|
16
|
+
<ul class="list-inline">
|
17
|
+
{% for network in site.social %}
|
18
|
+
<li>
|
19
|
+
<a href="{{ network.url }}" class="btn-social btn-outline"><i class="fa fa-fw fa-{{ network.title }}"></i></a>
|
20
|
+
</li>
|
21
|
+
{% endfor %}
|
22
|
+
</ul>
|
23
|
+
</div>
|
24
|
+
<div class="footer-col col-md-4">
|
25
|
+
<h3>{{ site.footer.credits }}</h3>
|
26
|
+
<p>{{ site.credits }}</p>
|
27
|
+
</div>
|
28
|
+
</div>
|
29
|
+
</div>
|
30
|
+
</div>
|
31
|
+
<div class="footer-below">
|
32
|
+
<div class="container">
|
33
|
+
<div class="row">
|
34
|
+
<div class="col-lg-12">
|
35
|
+
Copyright © {{ site.footer.copyright }} 20{{ site.time | date: '%y' }}
|
36
|
+
</div>
|
37
|
+
</div>
|
38
|
+
</div>
|
39
|
+
</div>
|
40
|
+
</footer>
|
41
|
+
|
42
|
+
<!-- Scroll to Top Button (Only visible on small and extra-small screen sizes) -->
|
43
|
+
<div class="scroll-top page-scroll visible-xs visible-sm">
|
44
|
+
<a class="btn btn-primary" href="#page-top">
|
45
|
+
<i class="fa fa-chevron-up"></i>
|
46
|
+
</a>
|
47
|
+
</div>
|
data/_includes/head.html
ADDED
@@ -0,0 +1,32 @@
|
|
1
|
+
<head>
|
2
|
+
<meta charset="utf-8">
|
3
|
+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
4
|
+
<title>{% if page.title %}{{ page.title }}{% else %}{{ site.title }}{% endif %}</title>
|
5
|
+
<meta name="viewport" content="width=device-width">
|
6
|
+
<meta name="description" content="{{ site.description }}">
|
7
|
+
<meta name="keywords" content="{{ site.keywords }}" />
|
8
|
+
{% if site.meta_author %}<meta name="author" content="{{ site.meta_author }}">{% endif %}
|
9
|
+
<link rel="canonical" href="{{ page.url | replace:'index.html','' | prepend: site.url }}">
|
10
|
+
<link rel="alternate" type="application/rss+xml" title="RSS" href="/feed.xml">
|
11
|
+
|
12
|
+
<!-- Custom CSS & Bootstrap Core CSS - Uses Bootswatch Flatly Theme: http://bootswatch.com/flatly/ -->
|
13
|
+
<link rel="stylesheet" href="{{ "/style.css" }}">
|
14
|
+
|
15
|
+
<!-- Google verification -->
|
16
|
+
{% if site.google_verify %}<meta name="google-site-verification" content="{{ site.google_verify }}">{% endif %}
|
17
|
+
|
18
|
+
<!-- Bing Verification -->
|
19
|
+
{% if site.bing_verify %}<meta name="msvalidate.01" content="{{ site.bing_verify }}">{% endif %}
|
20
|
+
|
21
|
+
<!-- Custom Fonts -->
|
22
|
+
<link rel="stylesheet" href="{{ "/css/font-awesome/css/font-awesome.min.css" }}">
|
23
|
+
<link href="//fonts.googleapis.com/css?family=Montserrat:400,700" rel="stylesheet" type="text/css">
|
24
|
+
<link href="//fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic" rel="stylesheet" type="text/css">
|
25
|
+
|
26
|
+
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
|
27
|
+
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
|
28
|
+
<!--[if lt IE 9]>
|
29
|
+
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
|
30
|
+
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
|
31
|
+
<![endif]-->
|
32
|
+
</head>
|
@@ -0,0 +1,15 @@
|
|
1
|
+
<!-- Header -->
|
2
|
+
<header>
|
3
|
+
<div class="container">
|
4
|
+
<div class="row">
|
5
|
+
<div class="col-lg-12">
|
6
|
+
<img class="img-responsive" src="img/profile.png" alt="">
|
7
|
+
<div class="intro-text">
|
8
|
+
<span class="name">{{ site.title }}</span>
|
9
|
+
<hr class="star-light">
|
10
|
+
<span class="skills">{{ site.skills }}</span>
|
11
|
+
</div>
|
12
|
+
</div>
|
13
|
+
</div>
|
14
|
+
</div>
|
15
|
+
</header>
|
data/_includes/js.html
ADDED
@@ -0,0 +1,26 @@
|
|
1
|
+
<!-- jQuery Version 1.11.0 -->
|
2
|
+
<script src="{{ "/js/jquery-1.11.0.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/classie.js" }}"></script>
|
10
|
+
<script src="{{ "/js/cbpAnimatedHeader.js" }}"></script>
|
11
|
+
|
12
|
+
<!-- Contact Form JavaScript -->
|
13
|
+
<script src="{{ "/js/jqBootstrapValidation.js" }}"></script>
|
14
|
+
{% if site.contact == "static" %}
|
15
|
+
<script src="{{ "/js/contact_me_static.js" }}"></script>
|
16
|
+
{% else %}
|
17
|
+
<script src="{{ "/js/contact_me.js" }}"></script>
|
18
|
+
{% endif %}
|
19
|
+
|
20
|
+
<!-- Custom Theme JavaScript -->
|
21
|
+
<script src="{{ "/js/freelancer.js" }}"></script>
|
22
|
+
|
23
|
+
{% if site.contact == "disqus" %}
|
24
|
+
<!-- Disqus Stuff -->
|
25
|
+
{% include js_disqus.html %}
|
26
|
+
{% endif %}
|
@@ -0,0 +1,21 @@
|
|
1
|
+
<script type="text/javascript">
|
2
|
+
/* * * CONFIGURATION VARIABLES: EDIT BEFORE PASTING INTO YOUR WEBPAGE * * */
|
3
|
+
var disqus_shortname = '{{ site.disqus_shortname }}'; // required: replace example with your forum shortname
|
4
|
+
|
5
|
+
/* * * DON'T EDIT BELOW THIS LINE * * */
|
6
|
+
(function() {
|
7
|
+
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
|
8
|
+
dsq.src = '//' + disqus_shortname + '.disqus.com/embed.js';
|
9
|
+
document.getElementById('disqus_thread').appendChild(dsq);
|
10
|
+
})();
|
11
|
+
|
12
|
+
/* * * DON'T EDIT BELOW THIS LINE * * */
|
13
|
+
(function () {
|
14
|
+
var s = document.createElement('script'); s.async = true;
|
15
|
+
s.type = 'text/javascript';
|
16
|
+
s.src = '//' + disqus_shortname + '.disqus.com/count.js';
|
17
|
+
document.getElementById('disqus_thread').appendChild(s);
|
18
|
+
}());
|
19
|
+
</script>
|
20
|
+
<noscript>Please enable JavaScript to view the <a href="http://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
21
|
+
<a href="http://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
@@ -0,0 +1,48 @@
|
|
1
|
+
<!-- Portfolio Modals -->
|
2
|
+
{% for post in site.posts %}
|
3
|
+
<div class="portfolio-modal modal fade" id="portfolioModal-{{ post.modal-id }}" tabindex="-1" role="dialog" aria-hidden="true">
|
4
|
+
<div class="modal-content">
|
5
|
+
<div class="close-modal" data-dismiss="modal">
|
6
|
+
<div class="lr">
|
7
|
+
<div class="rl">
|
8
|
+
</div>
|
9
|
+
</div>
|
10
|
+
</div>
|
11
|
+
<div class="container">
|
12
|
+
<div class="row">
|
13
|
+
<div class="col-lg-8 col-lg-offset-2">
|
14
|
+
<div class="modal-body">
|
15
|
+
<h2>{{ post.title }}</h2>
|
16
|
+
<hr class="star-primary">
|
17
|
+
<img src="img/portfolio/{{ post.img }}" class="img-responsive img-centered" alt="{{ post.alt }}">
|
18
|
+
{% if post.description %}
|
19
|
+
<p>{{ post.description }}</p>
|
20
|
+
{% endif %}
|
21
|
+
<ul class="list-inline item-details">
|
22
|
+
{% if post.client %}
|
23
|
+
<li>Client:
|
24
|
+
<strong><a href="http://startbootstrap.com">{{ post.client }}</a>
|
25
|
+
</strong>
|
26
|
+
</li>
|
27
|
+
{% endif %}
|
28
|
+
{% if post.project-date %}
|
29
|
+
<li>Date:
|
30
|
+
<strong><a href="http://startbootstrap.com">{{ post.project-date }}</a>
|
31
|
+
</strong>
|
32
|
+
</li>
|
33
|
+
{% endif %}
|
34
|
+
{% if post.category %}
|
35
|
+
<li>Service:
|
36
|
+
<strong><a href="http://startbootstrap.com">{{ post.category }}</a>
|
37
|
+
</strong>
|
38
|
+
</li>
|
39
|
+
{% endif %}
|
40
|
+
</ul>
|
41
|
+
<button type="button" class="btn btn-default" data-dismiss="modal"><i class="fa fa-times"></i> Close</button>
|
42
|
+
</div>
|
43
|
+
</div>
|
44
|
+
</div>
|
45
|
+
</div>
|
46
|
+
</div>
|
47
|
+
</div>
|
48
|
+
{% endfor %}
|
data/_includes/nav.html
ADDED
@@ -0,0 +1,35 @@
|
|
1
|
+
<!-- Navigation -->
|
2
|
+
<nav class="navbar navbar-default navbar-fixed-top">
|
3
|
+
<div class="container">
|
4
|
+
<!-- Brand and toggle get grouped for better mobile display -->
|
5
|
+
<div class="navbar-header page-scroll">
|
6
|
+
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
|
7
|
+
<span class="sr-only">Toggle navigation</span>
|
8
|
+
<span class="icon-bar"></span>
|
9
|
+
<span class="icon-bar"></span>
|
10
|
+
<span class="icon-bar"></span>
|
11
|
+
</button>
|
12
|
+
<a class="navbar-brand" href="#page-top">{{ site.title }}</a>
|
13
|
+
</div>
|
14
|
+
|
15
|
+
<!-- Collect the nav links, forms, and other content for toggling -->
|
16
|
+
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
|
17
|
+
<ul class="nav navbar-nav navbar-right">
|
18
|
+
<li class="hidden">
|
19
|
+
<a href="#page-top"></a>
|
20
|
+
</li>
|
21
|
+
<li class="page-scroll">
|
22
|
+
<a href="#portfolio">Portfolio</a>
|
23
|
+
</li>
|
24
|
+
<li class="page-scroll">
|
25
|
+
<a href="#about">About</a>
|
26
|
+
</li>
|
27
|
+
<li class="page-scroll">
|
28
|
+
<a href="#contact">Contact</a>
|
29
|
+
</li>
|
30
|
+
</ul>
|
31
|
+
</div>
|
32
|
+
<!-- /.navbar-collapse -->
|
33
|
+
</div>
|
34
|
+
<!-- /.container-fluid -->
|
35
|
+
</nav>
|
@@ -0,0 +1,26 @@
|
|
1
|
+
|
2
|
+
<!-- Portfolio Grid Section -->
|
3
|
+
<section id="portfolio">
|
4
|
+
<div class="container">
|
5
|
+
<div class="row">
|
6
|
+
<div class="col-lg-12 text-center">
|
7
|
+
<h2>Portfolio</h2>
|
8
|
+
<hr class="star-primary">
|
9
|
+
</div>
|
10
|
+
</div>
|
11
|
+
<div class="row">
|
12
|
+
{% for post in site.posts %}
|
13
|
+
<div class="col-sm-4 portfolio-item">
|
14
|
+
<a href="#portfolioModal-{{ post.modal-id }}" class="portfolio-link" data-toggle="modal">
|
15
|
+
<div class="caption">
|
16
|
+
<div class="caption-content">
|
17
|
+
<i class="fa fa-search-plus fa-3x"></i>
|
18
|
+
</div>
|
19
|
+
</div>
|
20
|
+
<img src="img/portfolio/{{ post.img }}" class="img-responsive" alt="{{ post.alt }}">
|
21
|
+
</a>
|
22
|
+
</div>
|
23
|
+
{% endfor %}
|
24
|
+
</div>
|
25
|
+
</div>
|
26
|
+
</section>
|
@@ -0,0 +1,22 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
{% include head.html %}
|
4
|
+
<body id="page-top" class="index">
|
5
|
+
{% include nav.html %}
|
6
|
+
{% include header.html %}
|
7
|
+
{% include portfolio_grid.html %}
|
8
|
+
{% include about.html %}
|
9
|
+
|
10
|
+
{% if site.contact == "static" %}
|
11
|
+
{% include contact_static.html %}
|
12
|
+
{% elsif site.contact == "disqus" %}
|
13
|
+
{% include contact_disqus.html %}
|
14
|
+
{% else %}
|
15
|
+
{% include contact.html %}
|
16
|
+
{% endif %}
|
17
|
+
|
18
|
+
{% include footer.html %}
|
19
|
+
{% include modals.html %}
|
20
|
+
{% include js.html %}
|
21
|
+
</body>
|
22
|
+
</html>
|
data/_layouts/style.css
ADDED
@@ -0,0 +1,12 @@
|
|
1
|
+
---
|
2
|
+
layout: default
|
3
|
+
modal-id: 6
|
4
|
+
date: 2014-07-15
|
5
|
+
img: submarine.png
|
6
|
+
alt: image-alt
|
7
|
+
project-date: April 2014
|
8
|
+
client: Start Bootstrap
|
9
|
+
category: Web Development
|
10
|
+
description: Use this area of the page to describe your project. The icon above is part of a free icon set by <a href="https://sellfy.com/p/8Q9P/jV3VZ/">Flat Icons</a>. On their website, you can download their free set with 16 icons, or you can purchase the entire set with 146 icons for only $12!
|
11
|
+
|
12
|
+
---
|
@@ -0,0 +1,12 @@
|
|
1
|
+
---
|
2
|
+
layout: default
|
3
|
+
modal-id: 5
|
4
|
+
date: 2014-07-14
|
5
|
+
img: safe.png
|
6
|
+
alt: image-alt
|
7
|
+
project-date: April 2014
|
8
|
+
client: Start Bootstrap
|
9
|
+
category: Web Development
|
10
|
+
description: Use this area of the page to describe your project. The icon above is part of a free icon set by <a href="https://sellfy.com/p/8Q9P/jV3VZ/">Flat Icons</a>. On their website, you can download their free set with 16 icons, or you can purchase the entire set with 146 icons for only $12!
|
11
|
+
|
12
|
+
---
|
@@ -0,0 +1,12 @@
|
|
1
|
+
---
|
2
|
+
layout: default
|
3
|
+
modal-id: 4
|
4
|
+
date: 2014-07-15
|
5
|
+
img: game.png
|
6
|
+
alt: image-alt
|
7
|
+
project-date: April 2014
|
8
|
+
client: Start Bootstrap
|
9
|
+
category: Web Development
|
10
|
+
description: Use this area of the page to describe your project. The icon above is part of a free icon set by <a href="https://sellfy.com/p/8Q9P/jV3VZ/">Flat Icons</a>. On their website, you can download their free set with 16 icons, or you can purchase the entire set with 146 icons for only $12!
|
11
|
+
|
12
|
+
---
|
@@ -0,0 +1,12 @@
|
|
1
|
+
---
|
2
|
+
layout: default
|
3
|
+
modal-id: 3
|
4
|
+
date: 2014-07-16
|
5
|
+
img: circus.png
|
6
|
+
alt: image-alt
|
7
|
+
project-date: April 2014
|
8
|
+
client: Start Bootstrap
|
9
|
+
category: Web Development
|
10
|
+
description: Use this area of the page to describe your project. The icon above is part of a free icon set by <a href="https://sellfy.com/p/8Q9P/jV3VZ/">Flat Icons</a>. On their website, you can download their free set with 16 icons, or you can purchase the entire set with 146 icons for only $12!
|
11
|
+
|
12
|
+
---
|
@@ -0,0 +1,12 @@
|
|
1
|
+
---
|
2
|
+
layout: default
|
3
|
+
modal-id: 2
|
4
|
+
date: 2014-07-17
|
5
|
+
img: cake.png
|
6
|
+
alt: image-alt
|
7
|
+
project-date: April 2014
|
8
|
+
client: Start Bootstrap
|
9
|
+
category: Web Development
|
10
|
+
description: Use this area of the page to describe your project. The icon above is part of a free icon set by <a href="https://sellfy.com/p/8Q9P/jV3VZ/">Flat Icons</a>. On their website, you can download their free set with 16 icons, or you can purchase the entire set with 146 icons for only $12!
|
11
|
+
|
12
|
+
---
|
@@ -0,0 +1,12 @@
|
|
1
|
+
---
|
2
|
+
layout: default
|
3
|
+
modal-id: 1
|
4
|
+
date: 2014-07-18
|
5
|
+
img: cabin.png
|
6
|
+
alt: image-alt
|
7
|
+
project-date: April 2014
|
8
|
+
client: Start Bootstrap
|
9
|
+
category: Web Development
|
10
|
+
description: Use this area of the page to describe your project. The icon above is part of a free icon set by <a href="https://sellfy.com/p/8Q9P/jV3VZ/">Flat Icons</a>. On their website, you can download their free set with 16 icons, or you can purchase the entire set with 146 icons for only $12!
|
11
|
+
|
12
|
+
---
|
metadata
ADDED
@@ -0,0 +1,193 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: freelancer-theme-jekyll
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.0.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Start Bootstrap
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2018-05-29 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: jekyll
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '3.6'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '3.6'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: jekyll-paginate
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '1.1'
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '1.1'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: jekyll-sitemap
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '1.1'
|
48
|
+
type: :runtime
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '1.1'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: jekyll-gist
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - "~>"
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '1.4'
|
62
|
+
type: :runtime
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - "~>"
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '1.4'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: jekyll-feed
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - "~>"
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: 0.9.2
|
76
|
+
type: :runtime
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - "~>"
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: 0.9.2
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: jekyll-data
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - "~>"
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: '1.0'
|
90
|
+
type: :runtime
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - "~>"
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: '1.0'
|
97
|
+
- !ruby/object:Gem::Dependency
|
98
|
+
name: jemoji
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - "~>"
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: '0.8'
|
104
|
+
type: :runtime
|
105
|
+
prerelease: false
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
107
|
+
requirements:
|
108
|
+
- - "~>"
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
version: '0.8'
|
111
|
+
- !ruby/object:Gem::Dependency
|
112
|
+
name: bundler
|
113
|
+
requirement: !ruby/object:Gem::Requirement
|
114
|
+
requirements:
|
115
|
+
- - "~>"
|
116
|
+
- !ruby/object:Gem::Version
|
117
|
+
version: '1.12'
|
118
|
+
type: :development
|
119
|
+
prerelease: false
|
120
|
+
version_requirements: !ruby/object:Gem::Requirement
|
121
|
+
requirements:
|
122
|
+
- - "~>"
|
123
|
+
- !ruby/object:Gem::Version
|
124
|
+
version: '1.12'
|
125
|
+
- !ruby/object:Gem::Dependency
|
126
|
+
name: rake
|
127
|
+
requirement: !ruby/object:Gem::Requirement
|
128
|
+
requirements:
|
129
|
+
- - "~>"
|
130
|
+
- !ruby/object:Gem::Version
|
131
|
+
version: '10.0'
|
132
|
+
type: :development
|
133
|
+
prerelease: false
|
134
|
+
version_requirements: !ruby/object:Gem::Requirement
|
135
|
+
requirements:
|
136
|
+
- - "~>"
|
137
|
+
- !ruby/object:Gem::Version
|
138
|
+
version: '10.0'
|
139
|
+
description:
|
140
|
+
email:
|
141
|
+
executables: []
|
142
|
+
extensions: []
|
143
|
+
extra_rdoc_files: []
|
144
|
+
files:
|
145
|
+
- README.md
|
146
|
+
- _includes/about.html
|
147
|
+
- _includes/contact.html
|
148
|
+
- _includes/contact_disqus.html
|
149
|
+
- _includes/contact_static.html
|
150
|
+
- _includes/css/bootstrap.min.css
|
151
|
+
- _includes/css/main.css
|
152
|
+
- _includes/footer.html
|
153
|
+
- _includes/head.html
|
154
|
+
- _includes/header.html
|
155
|
+
- _includes/js.html
|
156
|
+
- _includes/js_disqus.html
|
157
|
+
- _includes/modals.html
|
158
|
+
- _includes/nav.html
|
159
|
+
- _includes/portfolio_grid.html
|
160
|
+
- _layouts/default.html
|
161
|
+
- _layouts/style.css
|
162
|
+
- _posts/2014-07-13-project-6.markdown
|
163
|
+
- _posts/2014-07-14-project-5.markdown
|
164
|
+
- _posts/2014-07-15-project-4.markdown
|
165
|
+
- _posts/2014-07-16-project-3.markdown
|
166
|
+
- _posts/2014-07-17-project-2.markdown
|
167
|
+
- _posts/2014-07-18-project-1.markdown
|
168
|
+
homepage: https://github.com/jeromelachaud/freelancer-theme
|
169
|
+
licenses:
|
170
|
+
- MIT
|
171
|
+
metadata:
|
172
|
+
plugin_type: theme
|
173
|
+
post_install_message:
|
174
|
+
rdoc_options: []
|
175
|
+
require_paths:
|
176
|
+
- lib
|
177
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
178
|
+
requirements:
|
179
|
+
- - ">="
|
180
|
+
- !ruby/object:Gem::Version
|
181
|
+
version: '0'
|
182
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
183
|
+
requirements:
|
184
|
+
- - ">="
|
185
|
+
- !ruby/object:Gem::Version
|
186
|
+
version: '0'
|
187
|
+
requirements: []
|
188
|
+
rubyforge_project:
|
189
|
+
rubygems_version: 2.7.3
|
190
|
+
signing_key:
|
191
|
+
specification_version: 4
|
192
|
+
summary: Freelancer is a one page Bootstrap portfolio theme for freelancers.
|
193
|
+
test_files: []
|