dansz 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/LICENSE.txt +21 -0
- data/README.md +48 -0
- data/_includes/comentarios.html +21 -0
- data/_includes/footer.html +5 -0
- data/_includes/head.html +9 -0
- data/_includes/headerBlog.html +3 -0
- data/_includes/headerNormal.html +9 -0
- data/_includes/headerPosts.html +3 -0
- data/_layouts/blog.html +20 -0
- data/_layouts/default.html +19 -0
- data/_layouts/home.html +56 -0
- data/_layouts/page.html +5 -0
- data/_layouts/post.html +14 -0
- data/_sass/base.scss +187 -0
- data/_sass/blog.scss +133 -0
- data/_sass/home.scss +339 -0
- data/_sass/post.scss +22 -0
- data/_sass/syntax.scss +102 -0
- metadata +104 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: e6f3b60747c052e6488a1f62465a654a4a9536c0
|
4
|
+
data.tar.gz: c945f4c4d6f6284d96360a939d483c0f5b9cb2d8
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 742a0bcd7801a6c652fa0196fcdad3bd1246c320011a18faf762da2efa246a6c51646319ac5399ab474e5737b51d81e3d29c150748ef0c4fed45e11991bf8c4d
|
7
|
+
data.tar.gz: 20d77052390b7fd45e1b4c64bdcb49f582d8382a2c4f73fecb7a862e15cd48e6d7be375154a0fbb7e3198bfc94234805376d0608b4da8f98ed5f9674aaa6c8e0
|
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2017 Daniel Santos
|
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.
|
data/README.md
ADDED
@@ -0,0 +1,48 @@
|
|
1
|
+
# dansz
|
2
|
+
|
3
|
+
Welcome to your new Jekyll theme! In this directory, you'll find the files you need to be able to package up your theme into a gem. Put your layouts in `_layouts`, your includes in `_includes` and your sass in `_sass`. To experiment with this code, add some sample content and run `bundle exec jekyll serve` – this directory is setup just like a Jekyll site!
|
4
|
+
|
5
|
+
TODO: Delete this and the text above, and describe your gem
|
6
|
+
|
7
|
+
## Installation
|
8
|
+
|
9
|
+
Add this line to your Jekyll site's `Gemfile`:
|
10
|
+
|
11
|
+
```ruby
|
12
|
+
gem "dansz"
|
13
|
+
```
|
14
|
+
|
15
|
+
And add this line to your Jekyll site's `_config.yml`:
|
16
|
+
|
17
|
+
```yaml
|
18
|
+
theme: dansz
|
19
|
+
```
|
20
|
+
|
21
|
+
And then execute:
|
22
|
+
|
23
|
+
$ bundle
|
24
|
+
|
25
|
+
Or install it yourself as:
|
26
|
+
|
27
|
+
$ gem install dansz
|
28
|
+
|
29
|
+
## Usage
|
30
|
+
|
31
|
+
TODO: Write usage instructions here. Describe your available layouts, includes, and/or sass.
|
32
|
+
|
33
|
+
## Contributing
|
34
|
+
|
35
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/hello. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
|
36
|
+
|
37
|
+
## Development
|
38
|
+
|
39
|
+
To set up your environment to develop this theme, run `bundle install`.
|
40
|
+
|
41
|
+
Your theme is setup just like a normal Jekyll site! To test your theme, run `bundle exec jekyll serve` and open your browser at `http://localhost:4000`. This starts a Jekyll server using your theme. Add pages, documents, data, etc. like normal to test your theme's contents. As you make modifications to your theme and to your content, your site will regenerate and you should see the changes in the browser after a refresh, just like normal.
|
42
|
+
|
43
|
+
When your theme is released, only the files in `_layouts`, `_includes`, and `_sass` tracked with Git will be released.
|
44
|
+
|
45
|
+
## License
|
46
|
+
|
47
|
+
The theme is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
48
|
+
|
@@ -0,0 +1,21 @@
|
|
1
|
+
<div id="disqus_thread"></div>
|
2
|
+
<script>
|
3
|
+
|
4
|
+
/**
|
5
|
+
* RECOMMENDED CONFIGURATION VARIABLES: EDIT AND UNCOMMENT THE SECTION BELOW TO INSERT DYNAMIC VALUES FROM YOUR PLATFORM OR CMS.
|
6
|
+
* LEARN WHY DEFINING THESE VARIABLES IS IMPORTANT: https://disqus.com/admin/universalcode/#configuration-variables*/
|
7
|
+
/*
|
8
|
+
var disqus_config = function () {
|
9
|
+
this.page.url = PAGE_URL; // Replace PAGE_URL with your page's canonical URL variable
|
10
|
+
this.page.identifier = PAGE_IDENTIFIER; // Replace PAGE_IDENTIFIER with your page's unique identifier variable
|
11
|
+
};
|
12
|
+
*/
|
13
|
+
(function() { // DON'T EDIT BELOW THIS LINE
|
14
|
+
var d = document, s = d.createElement('script');
|
15
|
+
s.src = 'https://daniel-sc.disqus.com/embed.js';
|
16
|
+
s.setAttribute('data-timestamp', +new Date());
|
17
|
+
(d.head || d.body).appendChild(s);
|
18
|
+
})();
|
19
|
+
</script>
|
20
|
+
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
21
|
+
|
@@ -0,0 +1,5 @@
|
|
1
|
+
<footer id="rodape">
|
2
|
+
<a href=""><img src="{{site.base-url}}/assets/Imagens/iconeTwitter.png" alt="Twitter" title="Twitter"></a>
|
3
|
+
<a href="https://www.instagram.com/dansz_sc/?hl=pt-br"><img src="{{site.base-url}}/assets/Imagens/iconeInstagram.png" alt="Instagram" title="Instagram"></a>
|
4
|
+
<a href="https://github.com/Danielsantosc"><img src="{{site.base-url}}/assets/Imagens/iconeGithub.png" alt="GitHub" title="GitHub"></a>
|
5
|
+
</footer>
|
data/_includes/head.html
ADDED
@@ -0,0 +1,9 @@
|
|
1
|
+
<head>
|
2
|
+
<meta charset="UTF-8">
|
3
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
4
|
+
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
5
|
+
<title>{% if page.title %}{{ page.title | escape }}{% else %}{{ site.title | escape }}{% endif %}</title>
|
6
|
+
|
7
|
+
<!-- Css -->
|
8
|
+
<link rel="stylesheet" href="{{site.base-url}}/assets/general.css">
|
9
|
+
</head>
|
@@ -0,0 +1,9 @@
|
|
1
|
+
<header id="headerNormal">
|
2
|
+
<h1>Daniel Santos</h1>
|
3
|
+
<nav>
|
4
|
+
<button onclick="gtSobre()">Sobre</button>
|
5
|
+
<button onclick="gtProjetos()">Projetos</button>
|
6
|
+
<button onclick="gtContato()">Contato</button>
|
7
|
+
<a href="/blog"><button>Blog</button></a>
|
8
|
+
</nav>
|
9
|
+
</header>
|
data/_layouts/blog.html
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
---
|
2
|
+
layout: default
|
3
|
+
---
|
4
|
+
|
5
|
+
<section id="bannerBlog">
|
6
|
+
<h1>Blog</h1>
|
7
|
+
<a href="/">Voltar para o site</a>
|
8
|
+
</section>
|
9
|
+
|
10
|
+
<section id="posts">
|
11
|
+
<h1>Posts</h1>
|
12
|
+
<ul>
|
13
|
+
{% for post in site.posts %}
|
14
|
+
<li>
|
15
|
+
<a href="{{ post.url }}">{{ post.title }}</a>
|
16
|
+
<p>{{ post.author }} | {{ post.date | date: "%d/%m/%Y" }}</p>
|
17
|
+
</li>
|
18
|
+
{% endfor %}
|
19
|
+
</ul>
|
20
|
+
</section>
|
data/_layouts/home.html
ADDED
@@ -0,0 +1,56 @@
|
|
1
|
+
---
|
2
|
+
layout: default
|
3
|
+
---
|
4
|
+
|
5
|
+
{% include headerNormal.html %}
|
6
|
+
|
7
|
+
<section id="telaInicial">
|
8
|
+
<h1>Olá, eu sou o Daniel!</h1>
|
9
|
+
<div id="boxButton">
|
10
|
+
</div>
|
11
|
+
<div id="mouse">
|
12
|
+
<span></span>
|
13
|
+
</div>
|
14
|
+
</section>
|
15
|
+
|
16
|
+
<section id="telaSobre">
|
17
|
+
<h1>Sobre mim</h1>
|
18
|
+
<p>Meu nome e Daniel dos Santos Cardoso e tenho 18 anos, comecei a programar em janeiro de 2016 em um curso técnico em Americana-SP.</p>
|
19
|
+
<p>Tenho conhecimento em diversas linguagens e frameworks sendo elas: HTML, CSS, Javascript, Jquery, PHP, Java e C#, mas meu foco atual é o Ruby/Rails.</p>
|
20
|
+
<p>Não tenho nenhum trabalho concretizado ainda para por em meu portfólio, então, abaixo estão alguns projetos em que estou envolvido.</p>
|
21
|
+
</section>
|
22
|
+
|
23
|
+
<section id="telaProjetos">
|
24
|
+
<h1>Projetos</h1>
|
25
|
+
<article>
|
26
|
+
<div>
|
27
|
+
<h1>MLC Softwares</h1>
|
28
|
+
<p>A MLC Softwares e um projeto de empresa em conjunto com mais dois amigos do curso técnico, empresa focada em desenvolvimento de sistemas universais para atender múltiplos negócios com profissionalismo e um sistema de qualidade.</p>
|
29
|
+
<a href=""><button>Em breve</button></a>
|
30
|
+
</div>
|
31
|
+
</article>
|
32
|
+
<article>
|
33
|
+
<div>
|
34
|
+
<h1>APCursos</h1>
|
35
|
+
<p>Escola online com cursos de programação e tecnologia, cursos escritos por alunos da área para alunos da área, um local para repassar conhecimento.</p>
|
36
|
+
<a href=""><button>Em breve</button></a>
|
37
|
+
</div>
|
38
|
+
</article>
|
39
|
+
<article>
|
40
|
+
<div>
|
41
|
+
<h1>Blog</h1>
|
42
|
+
<p>Blog Pessoal para repassar conhecimento e compartilhar conquistas e dificuldades da minha vida pessoal.</p>
|
43
|
+
<a href="/blog"><button>Blog</button></a>
|
44
|
+
</div>
|
45
|
+
</article>
|
46
|
+
</section>
|
47
|
+
|
48
|
+
<section id="telaContato">
|
49
|
+
<h1>Contato</h1>
|
50
|
+
<form action="https://docs.google.com/forms/d/e/1FAIpQLScCWcVmdUZiA0_M8pb26ykBuk2b3dB1D6212mxmDrmkVL3lAQ/formResponse" method="POST" target="_self" onsubmit="redirect()">
|
51
|
+
<input name="entry.949777367" type="text" placeholder="Nome">
|
52
|
+
<input name="entry.965502572" type="text" placeholder="Email">
|
53
|
+
<textarea name="entry.967955344" id="entry.967955344" placeholder="Mensagem..." cols="30" rows="10"></textarea>
|
54
|
+
<button type="submit">Enviar</button>
|
55
|
+
</form>
|
56
|
+
</section>
|
data/_layouts/page.html
ADDED
data/_layouts/post.html
ADDED
data/_sass/base.scss
ADDED
@@ -0,0 +1,187 @@
|
|
1
|
+
@charset "utf-8";
|
2
|
+
@import url('https://fonts.googleapis.com/css?family=Quicksand:300,400,500,700');
|
3
|
+
/* https://coolors.co/ffffff-00171f-456b86-17afea-f7f7f7 */
|
4
|
+
|
5
|
+
$color1: #FFFFFF;
|
6
|
+
$color2: #F7F7F7;
|
7
|
+
$color3: #EFEFEF;
|
8
|
+
$color4: #A9A9A9;
|
9
|
+
$color5: #2C2C2C;
|
10
|
+
$color6: #000000;
|
11
|
+
|
12
|
+
$shadow: 0px 2px 4px rgba(44, 44, 44, 0.2), 0px 2px 4px rgba(44, 44, 44, 0.2);
|
13
|
+
|
14
|
+
$fontSmall: 14px;
|
15
|
+
$fontMedium: 18px;
|
16
|
+
$fontLarge: 24px;
|
17
|
+
|
18
|
+
$fontw1: 300;
|
19
|
+
$fontw2: 400;
|
20
|
+
$fontw3: 500;
|
21
|
+
$fontw4: 700;
|
22
|
+
|
23
|
+
@mixin transition($transition) {
|
24
|
+
-webkit-transition: $transition;
|
25
|
+
-moz-transition: $transition;
|
26
|
+
-o-transition: $transition;
|
27
|
+
transition: $transition;
|
28
|
+
}
|
29
|
+
|
30
|
+
*,
|
31
|
+
*::before,
|
32
|
+
*::after {
|
33
|
+
text-decoration: none;
|
34
|
+
font-family: 'Quicksand', sans-serif;
|
35
|
+
padding: 0;
|
36
|
+
margin: 0;
|
37
|
+
box-sizing: border-box;
|
38
|
+
}
|
39
|
+
|
40
|
+
*:focus {
|
41
|
+
outline: 0 none;
|
42
|
+
box-shadow: 0 0 0;
|
43
|
+
}
|
44
|
+
|
45
|
+
// header normal
|
46
|
+
header#headerNormal {
|
47
|
+
width: 100%;
|
48
|
+
height: 75px;
|
49
|
+
background-color: $color1;
|
50
|
+
display: flex;
|
51
|
+
justify-content: space-between;
|
52
|
+
align-items: center;
|
53
|
+
padding: 0px 0px 0px 15px;
|
54
|
+
position: fixed;
|
55
|
+
z-index: 10;
|
56
|
+
@include transition(0.2s);
|
57
|
+
}
|
58
|
+
|
59
|
+
header#headerNormal h1 {
|
60
|
+
font-size: $fontLarge;
|
61
|
+
color: $color5;
|
62
|
+
font-weight: $fontw1;
|
63
|
+
&::first-letter {
|
64
|
+
border: 1px solid $color5;
|
65
|
+
border-radius: 50%;
|
66
|
+
padding: 0px 5px 0px 6px;
|
67
|
+
margin-right: 2px;
|
68
|
+
font-weight: $fontw2;
|
69
|
+
}
|
70
|
+
}
|
71
|
+
|
72
|
+
header#headerNormal nav {
|
73
|
+
width: 300px;
|
74
|
+
height: 100%;
|
75
|
+
display: flex;
|
76
|
+
justify-content: space-between;
|
77
|
+
align-items: center;
|
78
|
+
}
|
79
|
+
|
80
|
+
header#headerNormal nav button {
|
81
|
+
width: 75px;
|
82
|
+
height: 100%;
|
83
|
+
border: none;
|
84
|
+
background-color: $color1;
|
85
|
+
color: $color5;
|
86
|
+
font-size: $fontSmall;
|
87
|
+
font-weight: $fontw2;
|
88
|
+
cursor: pointer;
|
89
|
+
@include transition(0.2s);
|
90
|
+
&:hover {
|
91
|
+
background-color: $color3;
|
92
|
+
}
|
93
|
+
}
|
94
|
+
|
95
|
+
header#headerNormal nav a {
|
96
|
+
width: 75px;
|
97
|
+
height: 100%;
|
98
|
+
> button {
|
99
|
+
border: none;
|
100
|
+
background-color: $color5;
|
101
|
+
color: $color1;
|
102
|
+
font-size: $fontSmall;
|
103
|
+
font-weight: $fontw1;
|
104
|
+
cursor: pointer;
|
105
|
+
&:hover {
|
106
|
+
background-color: $color6;
|
107
|
+
}
|
108
|
+
}
|
109
|
+
}
|
110
|
+
|
111
|
+
@media only screen and (max-width: 500px) {
|
112
|
+
header#headerNormal {
|
113
|
+
padding: 0;
|
114
|
+
}
|
115
|
+
|
116
|
+
header#headerNormal h1 {
|
117
|
+
display: none;
|
118
|
+
}
|
119
|
+
|
120
|
+
header#headerNormal nav {
|
121
|
+
width: 100%;
|
122
|
+
}
|
123
|
+
|
124
|
+
header#headerNormal nav button,
|
125
|
+
header#headerNormal nav a
|
126
|
+
{
|
127
|
+
width: 25%;
|
128
|
+
}
|
129
|
+
|
130
|
+
header#headerNormal nav a button {
|
131
|
+
width: 100%;
|
132
|
+
}
|
133
|
+
}
|
134
|
+
// fim header normal
|
135
|
+
|
136
|
+
// header posts e blog
|
137
|
+
header#headerPosts {
|
138
|
+
width: 100%;
|
139
|
+
height: 70px;
|
140
|
+
background-color: $color1;
|
141
|
+
display: flex;
|
142
|
+
justify-content: center;
|
143
|
+
align-items: center;
|
144
|
+
position: fixed;
|
145
|
+
z-index: 10;
|
146
|
+
@include transition(0.2s);
|
147
|
+
}
|
148
|
+
|
149
|
+
header#headerPosts a {
|
150
|
+
font-size: $fontLarge;
|
151
|
+
color: $color5;
|
152
|
+
font-weight: $fontw1;
|
153
|
+
&::first-letter {
|
154
|
+
border: 1px solid $color5;
|
155
|
+
border-radius: 50%;
|
156
|
+
padding: 0px 5px 0px 6px;
|
157
|
+
margin-right: 2px;
|
158
|
+
font-weight: $fontw2;
|
159
|
+
}
|
160
|
+
}
|
161
|
+
// Fim header posts e blog
|
162
|
+
|
163
|
+
// Começo rodapé
|
164
|
+
footer#rodape {
|
165
|
+
width: 100%;
|
166
|
+
height: 25vh;
|
167
|
+
background-color: $color5;
|
168
|
+
display: flex;
|
169
|
+
justify-content: center;
|
170
|
+
align-items: center;
|
171
|
+
}
|
172
|
+
|
173
|
+
footer#rodape a {
|
174
|
+
width: 32px;
|
175
|
+
height: 32px;
|
176
|
+
margin: 15px;
|
177
|
+
}
|
178
|
+
|
179
|
+
footer#rodape a img {
|
180
|
+
width: 100%;
|
181
|
+
height: 100%;
|
182
|
+
}
|
183
|
+
|
184
|
+
@import "home";
|
185
|
+
@import "blog";
|
186
|
+
@import "post";
|
187
|
+
@import "syntax";
|
data/_sass/blog.scss
ADDED
@@ -0,0 +1,133 @@
|
|
1
|
+
// Começo banner blog
|
2
|
+
section#bannerBlog {
|
3
|
+
width: 50%;
|
4
|
+
height: 100vh;
|
5
|
+
display: flex;
|
6
|
+
flex-direction: column;
|
7
|
+
justify-content: center;
|
8
|
+
align-items: center;
|
9
|
+
}
|
10
|
+
|
11
|
+
section#bannerBlog h1 {
|
12
|
+
color: $color1;
|
13
|
+
font-size: $fontLarge * 3;
|
14
|
+
font-weight: $fontw3;
|
15
|
+
background-color: $color5;
|
16
|
+
padding: 0px 10px 5px 10px;
|
17
|
+
position: relative;
|
18
|
+
margin-bottom: 50px;
|
19
|
+
}
|
20
|
+
|
21
|
+
section#bannerBlog h1:before,
|
22
|
+
section#bannerBlog h1:after {
|
23
|
+
content:'';
|
24
|
+
background-color: $color4;
|
25
|
+
width:50px;
|
26
|
+
height:80px;
|
27
|
+
transform:skewY(20deg);
|
28
|
+
position:absolute;
|
29
|
+
z-index:-1;
|
30
|
+
}
|
31
|
+
|
32
|
+
section#bannerBlog h1:before { top: 25px; left:0; }
|
33
|
+
section#bannerBlog h1:after { top:-10px; right:0; }
|
34
|
+
|
35
|
+
section#bannerBlog a {
|
36
|
+
color: $color4;
|
37
|
+
font-size: $fontMedium;
|
38
|
+
font-weight: $fontw2;
|
39
|
+
}
|
40
|
+
// Fim banner blog
|
41
|
+
|
42
|
+
// Começo Posts
|
43
|
+
section#posts {
|
44
|
+
width: 50%;
|
45
|
+
height: 100vh;
|
46
|
+
padding: 75px 0px 0px 0px;
|
47
|
+
display: flex;
|
48
|
+
flex-direction: column;
|
49
|
+
align-items: center;
|
50
|
+
position: absolute;
|
51
|
+
top: 0;
|
52
|
+
right: 50px;
|
53
|
+
z-index: 10;
|
54
|
+
overflow-y: auto;
|
55
|
+
}
|
56
|
+
|
57
|
+
section#posts::-webkit-scrollbar-track
|
58
|
+
{
|
59
|
+
border-radius: 10px;
|
60
|
+
background-color: $color3;
|
61
|
+
margin: 10px 0px 10px 0px;
|
62
|
+
}
|
63
|
+
|
64
|
+
section#posts::-webkit-scrollbar
|
65
|
+
{
|
66
|
+
width: 12px;
|
67
|
+
background-color: $color3;
|
68
|
+
}
|
69
|
+
|
70
|
+
section#posts::-webkit-scrollbar-thumb
|
71
|
+
{
|
72
|
+
border-radius: 10px;
|
73
|
+
box-shadow: inset 0 0 6px rgba(0,0,0,.3);
|
74
|
+
background-color: $color5;
|
75
|
+
}
|
76
|
+
|
77
|
+
section#posts h1 {
|
78
|
+
color: $color5;
|
79
|
+
font-size: $fontLarge;
|
80
|
+
font-weight: $fontw3;
|
81
|
+
margin-bottom: 50px;
|
82
|
+
}
|
83
|
+
|
84
|
+
section#posts ul {
|
85
|
+
width: 90%;
|
86
|
+
max-height: 100%;
|
87
|
+
}
|
88
|
+
|
89
|
+
section#posts ul li {
|
90
|
+
width: 100%;
|
91
|
+
min-height: 100%;
|
92
|
+
padding: 50px 0px 50px 0px;
|
93
|
+
display: flex;
|
94
|
+
flex-direction: column;
|
95
|
+
align-items: center;
|
96
|
+
background-color: $color1;
|
97
|
+
box-shadow: $shadow;
|
98
|
+
margin-bottom: 25px;
|
99
|
+
}
|
100
|
+
|
101
|
+
section#posts ul li a {
|
102
|
+
color: $color5;
|
103
|
+
text-align: center;
|
104
|
+
font-size: $fontMedium * 2;
|
105
|
+
font-weight: $fontw2;
|
106
|
+
margin-bottom: 15px;
|
107
|
+
}
|
108
|
+
|
109
|
+
section#posts ul li p {
|
110
|
+
color: $color4;
|
111
|
+
text-align: center;
|
112
|
+
font-size: $fontMedium;
|
113
|
+
font-weight: $fontw1;
|
114
|
+
}
|
115
|
+
// Fim Posts
|
116
|
+
|
117
|
+
@media only screen and (max-width: 975px) {
|
118
|
+
section#bannerBlog {
|
119
|
+
width: 100%;
|
120
|
+
}
|
121
|
+
|
122
|
+
section#posts {
|
123
|
+
position: unset;
|
124
|
+
width: 100%;
|
125
|
+
height: 100%;
|
126
|
+
padding: 0;
|
127
|
+
}
|
128
|
+
|
129
|
+
section#posts ul {
|
130
|
+
width: 90%;
|
131
|
+
min-height: 100%;
|
132
|
+
}
|
133
|
+
}
|
data/_sass/home.scss
ADDED
@@ -0,0 +1,339 @@
|
|
1
|
+
// Começo tela inicial
|
2
|
+
section#telaInicial {
|
3
|
+
width: 100%;
|
4
|
+
height: 100vh;
|
5
|
+
display: flex;
|
6
|
+
flex-direction: column;
|
7
|
+
justify-content: center;
|
8
|
+
align-items: center;
|
9
|
+
position: relative;
|
10
|
+
}
|
11
|
+
|
12
|
+
section#telaInicial h1 {
|
13
|
+
color: $color1;
|
14
|
+
font-size: $fontLarge * 3;
|
15
|
+
font-weight: $fontw3;
|
16
|
+
background-color: $color5;
|
17
|
+
padding: 5px;
|
18
|
+
position: relative;
|
19
|
+
}
|
20
|
+
|
21
|
+
section#telaInicial h1:before,
|
22
|
+
section#telaInicial h1:after {
|
23
|
+
content:'';
|
24
|
+
background-color: $color4;
|
25
|
+
width:50px;
|
26
|
+
height:80px;
|
27
|
+
transform:skewY(20deg);
|
28
|
+
position:absolute;
|
29
|
+
z-index:-1;
|
30
|
+
}
|
31
|
+
|
32
|
+
section#telaInicial h1:before { top: 30px; left:0; }
|
33
|
+
section#telaInicial h1:after { top:-10px; right:0; }
|
34
|
+
|
35
|
+
div#boxButton {
|
36
|
+
width: 150px;
|
37
|
+
height: 150px;
|
38
|
+
background-color: $color5;
|
39
|
+
position: absolute;
|
40
|
+
left: 50%;
|
41
|
+
bottom: -75px;
|
42
|
+
margin-left: -75px;
|
43
|
+
transform: rotate(45deg);
|
44
|
+
}
|
45
|
+
|
46
|
+
div#mouse {
|
47
|
+
width: 20px;
|
48
|
+
height: 34px;
|
49
|
+
background-color: transparent;
|
50
|
+
border: 3px solid $color1;
|
51
|
+
border-radius: 10px;
|
52
|
+
position: absolute;
|
53
|
+
left: 50%;
|
54
|
+
bottom: 20px;
|
55
|
+
margin-left: -10px;
|
56
|
+
@include transition(0.2s);
|
57
|
+
|
58
|
+
> span {
|
59
|
+
width: 6px;
|
60
|
+
height: 6px;
|
61
|
+
background-color: $color1;
|
62
|
+
opacity: 0;
|
63
|
+
border: 1px solid $color1;
|
64
|
+
border-radius: 50%;
|
65
|
+
position: absolute;
|
66
|
+
top: 5px;
|
67
|
+
left: 50%;
|
68
|
+
margin-left: -3px;
|
69
|
+
animation: mouse 2s infinite;
|
70
|
+
}
|
71
|
+
}
|
72
|
+
|
73
|
+
@keyframes mouse {
|
74
|
+
0% {
|
75
|
+
top: 5px;
|
76
|
+
opacity: 0;
|
77
|
+
}
|
78
|
+
50% {
|
79
|
+
top: 10px;
|
80
|
+
opacity: 1;
|
81
|
+
}
|
82
|
+
100% {
|
83
|
+
top: 15px;
|
84
|
+
opacity: 0;
|
85
|
+
}
|
86
|
+
}
|
87
|
+
|
88
|
+
@media only screen and (max-width: 760px) {
|
89
|
+
section#telaInicial h1 {
|
90
|
+
font-size: $fontLarge;
|
91
|
+
}
|
92
|
+
|
93
|
+
section#telaInicial h1:before,
|
94
|
+
section#telaInicial h1:after {
|
95
|
+
width:30px;
|
96
|
+
height:20px;
|
97
|
+
}
|
98
|
+
|
99
|
+
section#telaInicial h1:before { top: 25px; left:0; }
|
100
|
+
section#telaInicial h1:after { top:-5px; right:0; }
|
101
|
+
|
102
|
+
div#boxButton,
|
103
|
+
div#mouse {
|
104
|
+
display: none;
|
105
|
+
}
|
106
|
+
}
|
107
|
+
// Fim tela inicial
|
108
|
+
|
109
|
+
// Começo tela Sobre
|
110
|
+
section#telaSobre {
|
111
|
+
width: 100%;
|
112
|
+
max-height: 100%;
|
113
|
+
background-color: $color2;
|
114
|
+
padding: 125px 0px 25px 0px;
|
115
|
+
display: flex;
|
116
|
+
flex-direction: column;
|
117
|
+
align-items: center;
|
118
|
+
z-index: 10;
|
119
|
+
}
|
120
|
+
|
121
|
+
section#telaSobre h1 {
|
122
|
+
font-size: $fontLarge;
|
123
|
+
font-weight: $fontw3;
|
124
|
+
color: $color5;
|
125
|
+
margin-bottom: 25px;
|
126
|
+
}
|
127
|
+
|
128
|
+
section#telaSobre p {
|
129
|
+
width: 500px;
|
130
|
+
margin-bottom: 25px;
|
131
|
+
text-align: center;
|
132
|
+
font-size: $fontMedium;
|
133
|
+
font-weight: $fontw2;
|
134
|
+
color: $color5;
|
135
|
+
}
|
136
|
+
|
137
|
+
@media only screen and (max-width: 525px) {
|
138
|
+
section#telaSobre {
|
139
|
+
padding: 75px 0px 25px 0px;
|
140
|
+
}
|
141
|
+
|
142
|
+
section#telaSobre p {
|
143
|
+
width: 90%;
|
144
|
+
}
|
145
|
+
}
|
146
|
+
// Fim tela sobre
|
147
|
+
|
148
|
+
// Começo tela projetos
|
149
|
+
section#telaProjetos {
|
150
|
+
width: 100%;
|
151
|
+
max-height: 100%;
|
152
|
+
background-color: $color1;
|
153
|
+
padding: 100px 0px 50px 0px;
|
154
|
+
}
|
155
|
+
|
156
|
+
section#telaProjetos h1 {
|
157
|
+
width: 100%;
|
158
|
+
text-align: center;
|
159
|
+
font-size: $fontLarge;
|
160
|
+
font-weight: $fontw3;
|
161
|
+
color: $color5;
|
162
|
+
margin-bottom: 50px;
|
163
|
+
}
|
164
|
+
|
165
|
+
section#telaProjetos article {
|
166
|
+
width: 90%;
|
167
|
+
height: 450px;
|
168
|
+
position: relative;
|
169
|
+
margin: 25px;
|
170
|
+
}
|
171
|
+
|
172
|
+
section#telaProjetos article:nth-child(2) {
|
173
|
+
background-image: url("../assets/Imagens/bgMlc.jpg");
|
174
|
+
background-position: center;
|
175
|
+
background-attachment: fixed;
|
176
|
+
float: left;
|
177
|
+
}
|
178
|
+
|
179
|
+
section#telaProjetos article:nth-child(3) {
|
180
|
+
background-image: url("../assets/Imagens/bgApcursos.jpg");
|
181
|
+
background-position: center;
|
182
|
+
background-attachment: fixed;
|
183
|
+
float: right;
|
184
|
+
}
|
185
|
+
|
186
|
+
section#telaProjetos article:nth-child(4) {
|
187
|
+
background-image: url("../assets/Imagens/bgBlog.jpg");
|
188
|
+
background-position: center;
|
189
|
+
background-size: cover;
|
190
|
+
background-attachment: fixed;
|
191
|
+
float: left;
|
192
|
+
}
|
193
|
+
|
194
|
+
section#telaProjetos article div {
|
195
|
+
width: 100%;
|
196
|
+
height: 100%;
|
197
|
+
display: flex;
|
198
|
+
flex-direction: column;
|
199
|
+
align-items: center;
|
200
|
+
justify-content: space-between;
|
201
|
+
padding: 15px;
|
202
|
+
}
|
203
|
+
|
204
|
+
section#telaProjetos article:nth-child(2) div {
|
205
|
+
background-color: rgba(0, 163, 0, 0.9);
|
206
|
+
}
|
207
|
+
|
208
|
+
section#telaProjetos article:nth-child(3) div {
|
209
|
+
background-color: rgba(0, 204, 255, 0.9);
|
210
|
+
}
|
211
|
+
|
212
|
+
section#telaProjetos article:nth-child(4) div {
|
213
|
+
background-color: rgba(169, 169, 169, 0.9);
|
214
|
+
}
|
215
|
+
|
216
|
+
section#telaProjetos article div h1 {
|
217
|
+
font-size: $fontLarge * 3;
|
218
|
+
font-weight: $fontw3;
|
219
|
+
color: $color1;
|
220
|
+
margin-bottom: 0;
|
221
|
+
}
|
222
|
+
|
223
|
+
section#telaProjetos article div p {
|
224
|
+
font-size: $fontMedium;
|
225
|
+
font-weight: $fontw2;
|
226
|
+
color: $color1;
|
227
|
+
width: 50%;
|
228
|
+
text-align: justify;
|
229
|
+
}
|
230
|
+
|
231
|
+
section#telaProjetos article div a {
|
232
|
+
width: 50%;
|
233
|
+
height: 50px;
|
234
|
+
}
|
235
|
+
|
236
|
+
section#telaProjetos article div a button {
|
237
|
+
width: 100%;
|
238
|
+
height: 50px;
|
239
|
+
background-color: transparent;
|
240
|
+
border: 1px solid $color1;
|
241
|
+
color: $color1;
|
242
|
+
font-size: $fontMedium;
|
243
|
+
font-weight: $fontw2;
|
244
|
+
cursor: pointer;
|
245
|
+
@include transition(0.2s);
|
246
|
+
}
|
247
|
+
|
248
|
+
section#telaProjetos article div a button:hover {
|
249
|
+
background-color: $color1;
|
250
|
+
border: 1px solid $color1;
|
251
|
+
color: $color5;
|
252
|
+
}
|
253
|
+
|
254
|
+
@media only screen and (max-width: 750px) {
|
255
|
+
section#telaProjetos article {
|
256
|
+
width: 100%;
|
257
|
+
margin: 0;
|
258
|
+
}
|
259
|
+
|
260
|
+
section#telaProjetos article div h1 {
|
261
|
+
width: 90%;
|
262
|
+
text-align: center;
|
263
|
+
font-size: $fontLarge * 2;
|
264
|
+
}
|
265
|
+
|
266
|
+
section#telaProjetos article div p {
|
267
|
+
width: 90%;
|
268
|
+
font-size: $fontMedium;
|
269
|
+
}
|
270
|
+
|
271
|
+
section#telaProjetos article div button {
|
272
|
+
width: 90%;
|
273
|
+
}
|
274
|
+
}
|
275
|
+
// Fim tela projetos
|
276
|
+
|
277
|
+
// Começo tela contato
|
278
|
+
section#telaContato {
|
279
|
+
width: 100%;
|
280
|
+
max-height: 100%;
|
281
|
+
background-color: $color3;
|
282
|
+
padding: 100px 0px 50px 0px;
|
283
|
+
display: flex;
|
284
|
+
flex-direction: column;
|
285
|
+
align-items: center;
|
286
|
+
}
|
287
|
+
|
288
|
+
section#telaContato h1 {
|
289
|
+
font-size: $fontLarge;
|
290
|
+
font-weight: $fontw3;
|
291
|
+
color: $color5;
|
292
|
+
margin-bottom: 50px;
|
293
|
+
}
|
294
|
+
|
295
|
+
section#telaContato form {
|
296
|
+
width: 300px;
|
297
|
+
max-height: 100%;
|
298
|
+
background-color: $color3;
|
299
|
+
display: flex;
|
300
|
+
flex-wrap: wrap;
|
301
|
+
justify-content: space-between;
|
302
|
+
}
|
303
|
+
|
304
|
+
section#telaContato form input {
|
305
|
+
width: 145px;
|
306
|
+
height: 30px;
|
307
|
+
margin-bottom: 10px;
|
308
|
+
padding: 5px;
|
309
|
+
border: 1px solid $color4;
|
310
|
+
}
|
311
|
+
|
312
|
+
section#telaContato form textarea {
|
313
|
+
width: 300px;
|
314
|
+
margin-bottom: 10px;
|
315
|
+
padding: 5px;
|
316
|
+
resize: none;
|
317
|
+
border: 1px solid $color4;
|
318
|
+
}
|
319
|
+
|
320
|
+
section#telaContato form input:hover,
|
321
|
+
section#telaContato form textarea:hover,
|
322
|
+
section#telaContato form input:focus,
|
323
|
+
section#telaContato form textarea:focus {
|
324
|
+
border: 1px solid $color5;
|
325
|
+
}
|
326
|
+
|
327
|
+
section#telaContato form button {
|
328
|
+
width: 300px;
|
329
|
+
height: 30px;
|
330
|
+
border: none;
|
331
|
+
color: $color1;
|
332
|
+
background-color: $color5;
|
333
|
+
cursor: pointer;
|
334
|
+
@include transition(0.2s);
|
335
|
+
}
|
336
|
+
|
337
|
+
section#telaContato form button:hover {
|
338
|
+
background-color: black;
|
339
|
+
}
|
data/_sass/post.scss
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
// começo conteudo
|
2
|
+
section#conteudo {
|
3
|
+
padding: 100px 15% 50px 15%;
|
4
|
+
font-size: $fontMedium;
|
5
|
+
font-weight: $fontw2;
|
6
|
+
line-height: 1.5em;
|
7
|
+
text-align: justify;
|
8
|
+
}
|
9
|
+
// fim conteudo
|
10
|
+
|
11
|
+
// começo comentarios
|
12
|
+
section#comentarios {
|
13
|
+
padding: 50px 15% 50px 15%;
|
14
|
+
}
|
15
|
+
// fim comentarios
|
16
|
+
|
17
|
+
@media only screen and (max-width: 800px) {
|
18
|
+
section#conteudo,
|
19
|
+
section#comentarios {
|
20
|
+
padding: 100px 5% 50px 5%;
|
21
|
+
}
|
22
|
+
}
|
data/_sass/syntax.scss
ADDED
@@ -0,0 +1,102 @@
|
|
1
|
+
code {
|
2
|
+
background-color: $color3;
|
3
|
+
color: $color5;
|
4
|
+
padding: 2px 5px 2px 5px;
|
5
|
+
}
|
6
|
+
|
7
|
+
pre {
|
8
|
+
background-color: $color2;
|
9
|
+
padding: 0;
|
10
|
+
}
|
11
|
+
|
12
|
+
pre code {
|
13
|
+
background-color: $color2;
|
14
|
+
color: inherit;
|
15
|
+
font-size: 100%;
|
16
|
+
padding: 0;
|
17
|
+
}
|
18
|
+
|
19
|
+
.highlight {
|
20
|
+
background-color: $color3;
|
21
|
+
line-height: 1.5;
|
22
|
+
padding: 15px 5px 15px 5px;
|
23
|
+
|
24
|
+
pre {
|
25
|
+
margin-bottom: 0;
|
26
|
+
overflow-x: auto;
|
27
|
+
}
|
28
|
+
|
29
|
+
.lineno {
|
30
|
+
color: $color5;
|
31
|
+
text-align: center;
|
32
|
+
padding: 0 25px 0 25px;
|
33
|
+
padding: 10px;
|
34
|
+
background-color: $color3;
|
35
|
+
margin-right: 10px;
|
36
|
+
// Make sure numbers aren't selectable
|
37
|
+
-webkit-user-select: none;
|
38
|
+
-moz-user-select: none;
|
39
|
+
user-select: none;
|
40
|
+
}
|
41
|
+
}
|
42
|
+
|
43
|
+
.highlight { background: #ffffff; }
|
44
|
+
.highlight .c { color: #999988; font-style: italic } /* Comment */
|
45
|
+
.highlight .err { color: #a61717; background-color: #e3d2d2 } /* Error */
|
46
|
+
.highlight .k { font-weight: bold } /* Keyword */
|
47
|
+
.highlight .o { font-weight: bold } /* Operator */
|
48
|
+
.highlight .cm { color: #999988; font-style: italic } /* Comment.Multiline */
|
49
|
+
.highlight .cp { color: #999999; font-weight: bold } /* Comment.Preproc */
|
50
|
+
.highlight .c1 { color: #999988; font-style: italic } /* Comment.Single */
|
51
|
+
.highlight .cs { color: #999999; font-weight: bold; font-style: italic } /* Comment.Special */
|
52
|
+
.highlight .gd { color: #000000; background-color: #ffdddd } /* Generic.Deleted */
|
53
|
+
.highlight .gd .x { color: #000000; background-color: #ffaaaa } /* Generic.Deleted.Specific */
|
54
|
+
.highlight .ge { font-style: italic } /* Generic.Emph */
|
55
|
+
.highlight .gr { color: #aa0000 } /* Generic.Error */
|
56
|
+
.highlight .gh { color: #999999 } /* Generic.Heading */
|
57
|
+
.highlight .gi { color: #000000; background-color: #ddffdd } /* Generic.Inserted */
|
58
|
+
.highlight .gi .x { color: #000000; background-color: #aaffaa } /* Generic.Inserted.Specific */
|
59
|
+
.highlight .go { color: #888888 } /* Generic.Output */
|
60
|
+
.highlight .gp { color: #555555 } /* Generic.Prompt */
|
61
|
+
.highlight .gs { font-weight: bold } /* Generic.Strong */
|
62
|
+
.highlight .gu { color: #aaaaaa } /* Generic.Subheading */
|
63
|
+
.highlight .gt { color: #aa0000 } /* Generic.Traceback */
|
64
|
+
.highlight .kc { font-weight: bold } /* Keyword.Constant */
|
65
|
+
.highlight .kd { font-weight: bold } /* Keyword.Declaration */
|
66
|
+
.highlight .kp { font-weight: bold } /* Keyword.Pseudo */
|
67
|
+
.highlight .kr { font-weight: bold } /* Keyword.Reserved */
|
68
|
+
.highlight .kt { color: #445588; font-weight: bold } /* Keyword.Type */
|
69
|
+
.highlight .m { color: #009999 } /* Literal.Number */
|
70
|
+
.highlight .s { color: #d14 } /* Literal.String */
|
71
|
+
.highlight .na { color: #008080 } /* Name.Attribute */
|
72
|
+
.highlight .nb { color: #0086B3 } /* Name.Builtin */
|
73
|
+
.highlight .nc { color: #445588; font-weight: bold } /* Name.Class */
|
74
|
+
.highlight .no { color: #008080 } /* Name.Constant */
|
75
|
+
.highlight .ni { color: #800080 } /* Name.Entity */
|
76
|
+
.highlight .ne { color: #990000; font-weight: bold } /* Name.Exception */
|
77
|
+
.highlight .nf { color: #990000; font-weight: bold } /* Name.Function */
|
78
|
+
.highlight .nn { color: #555555 } /* Name.Namespace */
|
79
|
+
.highlight .nt { color: #000080 } /* Name.Tag */
|
80
|
+
.highlight .nv { color: #008080 } /* Name.Variable */
|
81
|
+
.highlight .ow { font-weight: bold } /* Operator.Word */
|
82
|
+
.highlight .w { color: #bbbbbb } /* Text.Whitespace */
|
83
|
+
.highlight .mf { color: #009999 } /* Literal.Number.Float */
|
84
|
+
.highlight .mh { color: #009999 } /* Literal.Number.Hex */
|
85
|
+
.highlight .mi { color: #009999 } /* Literal.Number.Integer */
|
86
|
+
.highlight .mo { color: #009999 } /* Literal.Number.Oct */
|
87
|
+
.highlight .sb { color: #d14 } /* Literal.String.Backtick */
|
88
|
+
.highlight .sc { color: #d14 } /* Literal.String.Char */
|
89
|
+
.highlight .sd { color: #d14 } /* Literal.String.Doc */
|
90
|
+
.highlight .s2 { color: #d14 } /* Literal.String.Double */
|
91
|
+
.highlight .se { color: #d14 } /* Literal.String.Escape */
|
92
|
+
.highlight .sh { color: #d14 } /* Literal.String.Heredoc */
|
93
|
+
.highlight .si { color: #d14 } /* Literal.String.Interpol */
|
94
|
+
.highlight .sx { color: #d14 } /* Literal.String.Other */
|
95
|
+
.highlight .sr { color: #009926 } /* Literal.String.Regex */
|
96
|
+
.highlight .s1 { color: #d14 } /* Literal.String.Single */
|
97
|
+
.highlight .ss { color: #990073 } /* Literal.String.Symbol */
|
98
|
+
.highlight .bp { color: #999999 } /* Name.Builtin.Pseudo */
|
99
|
+
.highlight .vc { color: #008080 } /* Name.Variable.Class */
|
100
|
+
.highlight .vg { color: #008080 } /* Name.Variable.Global */
|
101
|
+
.highlight .vi { color: #008080 } /* Name.Variable.Instance */
|
102
|
+
.highlight .il { color: #009999 } /* Literal.Number.Integer.Long */
|
metadata
ADDED
@@ -0,0 +1,104 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: dansz
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Daniel Santos
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2017-09-20 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.5'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '3.5'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: bundler
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '1.12'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '1.12'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rake
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '10.0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '10.0'
|
55
|
+
description:
|
56
|
+
email:
|
57
|
+
- dasaca98@gmail.com
|
58
|
+
executables: []
|
59
|
+
extensions: []
|
60
|
+
extra_rdoc_files: []
|
61
|
+
files:
|
62
|
+
- LICENSE.txt
|
63
|
+
- README.md
|
64
|
+
- _includes/comentarios.html
|
65
|
+
- _includes/footer.html
|
66
|
+
- _includes/head.html
|
67
|
+
- _includes/headerBlog.html
|
68
|
+
- _includes/headerNormal.html
|
69
|
+
- _includes/headerPosts.html
|
70
|
+
- _layouts/blog.html
|
71
|
+
- _layouts/default.html
|
72
|
+
- _layouts/home.html
|
73
|
+
- _layouts/page.html
|
74
|
+
- _layouts/post.html
|
75
|
+
- _sass/base.scss
|
76
|
+
- _sass/blog.scss
|
77
|
+
- _sass/home.scss
|
78
|
+
- _sass/post.scss
|
79
|
+
- _sass/syntax.scss
|
80
|
+
homepage: https://daniel-sc.com/
|
81
|
+
licenses:
|
82
|
+
- MIT
|
83
|
+
metadata: {}
|
84
|
+
post_install_message:
|
85
|
+
rdoc_options: []
|
86
|
+
require_paths:
|
87
|
+
- lib
|
88
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
89
|
+
requirements:
|
90
|
+
- - ">="
|
91
|
+
- !ruby/object:Gem::Version
|
92
|
+
version: '0'
|
93
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
94
|
+
requirements:
|
95
|
+
- - ">="
|
96
|
+
- !ruby/object:Gem::Version
|
97
|
+
version: '0'
|
98
|
+
requirements: []
|
99
|
+
rubyforge_project:
|
100
|
+
rubygems_version: 2.6.13
|
101
|
+
signing_key:
|
102
|
+
specification_version: 4
|
103
|
+
summary: '"Tema do meu blog Pessoal"'
|
104
|
+
test_files: []
|