simplezinho 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 +65 -0
- data/_config.yml +18 -0
- data/_data/publications.yml +25 -0
- data/_includes/back_link.html +1 -0
- data/_includes/footer.html +10 -0
- data/_includes/head.html +16 -0
- data/_includes/header.html +16 -0
- data/_layouts/blog.html +6 -0
- data/_layouts/default.html +10 -0
- data/_layouts/page.html +5 -0
- data/_layouts/post.html +18 -0
- data/_layouts/publications.html +43 -0
- data/_sass/simplezinho.scss +170 -0
- data/_sass/variables.scss +8 -0
- data/assets/css/main.scss +5 -0
- data/assets/img/logo-pdf.svg +36 -0
- data/assets/img/logo-simplezinho.svg +92 -0
- data/assets/img/test-logo +51 -0
- data/assets/img/test-logo.svg +51 -0
- metadata +77 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 4a28fba864abcbb9087cf0bcde5a4bc64d07b20d75a24fa337a75537c572d9d3
|
|
4
|
+
data.tar.gz: 51de9a399c5907d127b8bf753e8c74c006abbc2557a2262da45da4e4c73262fd
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: a315bf579a70d64af5cac7c00fe8ec12cb4343e18acc48175086b4f691fb398ea6a1b89613ceabff84c7185c132ede5895a23615bdda4f1e4af9ab6db393057d
|
|
7
|
+
data.tar.gz: 222262b7ce1767f583edd0c2041d38e999e1e937d15e483c879f525b48373bfb2561677bdad594b37ea3d9170ccc76ef9b2c3ac68dda2e93ef1fe9b1c8716492
|
data/LICENSE.txt
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
The MIT License (MIT)
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025 Giovana Morais
|
|
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,65 @@
|
|
|
1
|
+
# simplezinho
|
|
2
|
+
|
|
3
|
+
Theme for the newer version of my website.
|
|
4
|
+
Simplezinho is, in Portuguese, something simple. The correct spelling is
|
|
5
|
+
actually "simplesinho", but I don't care: I always thought it looked bad.
|
|
6
|
+
|
|
7
|
+
## TODO
|
|
8
|
+
- [ ] finish blog page
|
|
9
|
+
- [ ] add footnote on right bar
|
|
10
|
+
- [ ] add support to code
|
|
11
|
+
- [ ] add support to tables
|
|
12
|
+
- [ ] finish projects page
|
|
13
|
+
- [ ] i don't even know if i need a project pages, to be honest.
|
|
14
|
+
- [ ] flexibilize publications (loop over .yml categories instead of manually
|
|
15
|
+
add them)
|
|
16
|
+
|
|
17
|
+
## Installation
|
|
18
|
+
|
|
19
|
+
Add this line to your Jekyll site's `Gemfile`:
|
|
20
|
+
|
|
21
|
+
```ruby
|
|
22
|
+
gem "simplezinho"
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
And add this line to your Jekyll site's `_config.yml`:
|
|
26
|
+
|
|
27
|
+
```yaml
|
|
28
|
+
theme: simplezinho
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
And then execute:
|
|
32
|
+
|
|
33
|
+
$ bundle
|
|
34
|
+
|
|
35
|
+
Or install it yourself as:
|
|
36
|
+
|
|
37
|
+
$ gem install simplezinho
|
|
38
|
+
|
|
39
|
+
## Usage
|
|
40
|
+
|
|
41
|
+
### Publications
|
|
42
|
+
|
|
43
|
+
To add a publication, add an entry to the `_data/publications.yml` file. For now
|
|
44
|
+
it only supports Publications and White Paper, but I'll flexibilize this later.
|
|
45
|
+
|
|
46
|
+
### Blog
|
|
47
|
+
|
|
48
|
+
Blog posts should be in the format YYYY-MM-DD-name-of-post.md.
|
|
49
|
+
|
|
50
|
+
## Contributing
|
|
51
|
+
|
|
52
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/giovana-morais/simplezinho. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](https://www.contributor-covenant.org/) code of conduct.
|
|
53
|
+
|
|
54
|
+
## Development
|
|
55
|
+
|
|
56
|
+
To set up your environment to develop this theme, run `bundle install`.
|
|
57
|
+
|
|
58
|
+
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.
|
|
59
|
+
|
|
60
|
+
When your theme is released, only the files in `_layouts`, `_includes`, `_sass` and `assets` tracked with Git will be bundled.
|
|
61
|
+
To add a custom directory to your theme-gem, please edit the regexp in `simplezinho.gemspec` accordingly.
|
|
62
|
+
|
|
63
|
+
## License
|
|
64
|
+
|
|
65
|
+
The theme is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
data/_config.yml
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
title: "simplezinho"
|
|
2
|
+
author: "Giovana Morais"
|
|
3
|
+
github_repo: "giovana-morais/simplezinho"
|
|
4
|
+
email: giovana.vmorais@gmail.com
|
|
5
|
+
|
|
6
|
+
navigation:
|
|
7
|
+
- name: About
|
|
8
|
+
link: /about
|
|
9
|
+
- name: Projects
|
|
10
|
+
link: /projects
|
|
11
|
+
- name: CV
|
|
12
|
+
link: /resume
|
|
13
|
+
# - name: Research
|
|
14
|
+
# link: /research
|
|
15
|
+
- name: Publications
|
|
16
|
+
link: /publications
|
|
17
|
+
- name: Blog
|
|
18
|
+
link: /blog
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
conferences:
|
|
2
|
+
- title: "The Most Amazing Paper"
|
|
3
|
+
authors: You, Co-Author 1, Co-Author 2
|
|
4
|
+
conference: International Conference on Your Favorite Research Topic
|
|
5
|
+
year: 2024
|
|
6
|
+
bibtex: bibtex_file
|
|
7
|
+
pdf_link: pdf_link
|
|
8
|
+
code: link_to_your_amazing_code
|
|
9
|
+
- title: "Ooops, I did it again! How to be creating and get yet another amazing paper"
|
|
10
|
+
authors: I. Love, B. Iking, D. Rawing and You
|
|
11
|
+
conference: Brazilian Conference on Another Cool Research Topic
|
|
12
|
+
year: 2024
|
|
13
|
+
bibtex: bibtex_file
|
|
14
|
+
pdf_link: pdf_link
|
|
15
|
+
- title: "This one will spark a lot of discussions"
|
|
16
|
+
authors: You, A. Re, A. Mazing, I. Ncredible, and E. Xcellent
|
|
17
|
+
conference: 1st Conference on Novelas
|
|
18
|
+
year: 2024
|
|
19
|
+
bibtex: test
|
|
20
|
+
code: link_to_your_amazing_code
|
|
21
|
+
white_papers:
|
|
22
|
+
- title: "Wow, Such Science"
|
|
23
|
+
authors: You and Y. OurBestFriend
|
|
24
|
+
conference: Another Cool Research Topic Workshop
|
|
25
|
+
year: 2025
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<a href="{{ "/" | relative_url }}">Back</a>
|
data/_includes/head.html
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<head>
|
|
2
|
+
<meta charset="utf-8" />
|
|
3
|
+
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
4
|
+
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
5
|
+
|
|
6
|
+
<title>
|
|
7
|
+
{%- if page.title -%}
|
|
8
|
+
{{ page.title }}
|
|
9
|
+
{%- else -%}
|
|
10
|
+
{{ site.title }}
|
|
11
|
+
{%- endif -%}
|
|
12
|
+
</title>
|
|
13
|
+
|
|
14
|
+
<link rel="shortcut icon" type="image/x-icon" href="{{ site.favicon | relative_url }}" />
|
|
15
|
+
<link rel="stylesheet" href="{{ "/assets/css/main.css" | relative_url }}" />
|
|
16
|
+
</head>
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<header class="site-header">
|
|
2
|
+
<nav class="site-nav">
|
|
3
|
+
<a href="{{ '/' | relative_url }}" class="logo">
|
|
4
|
+
simplezinho
|
|
5
|
+
</a>
|
|
6
|
+
<div class="nav-links">
|
|
7
|
+
{% for item in site.navigation %}
|
|
8
|
+
<a href="{{ item.link | relative_url }}" {% if page.url == item.link %}class="active"{% endif %}>
|
|
9
|
+
{{ item.name }}
|
|
10
|
+
</a>
|
|
11
|
+
{{ item.authors}}
|
|
12
|
+
|
|
13
|
+
{% endfor %}
|
|
14
|
+
</div>
|
|
15
|
+
</nav>
|
|
16
|
+
</header>
|
data/_layouts/blog.html
ADDED
data/_layouts/page.html
ADDED
data/_layouts/post.html
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
---
|
|
2
|
+
layout: default
|
|
3
|
+
---
|
|
4
|
+
|
|
5
|
+
{%-include back_link.html-%}
|
|
6
|
+
|
|
7
|
+
<article>
|
|
8
|
+
<script
|
|
9
|
+
src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"
|
|
10
|
+
type="text/javascript"></script>
|
|
11
|
+
<p class="post-meta">
|
|
12
|
+
<time datetime="{{ page.date }}">{{ page.date | date: site.theme_config.date_format }}</time>
|
|
13
|
+
</p>
|
|
14
|
+
|
|
15
|
+
<h1>{{ page.title }}</h1>
|
|
16
|
+
|
|
17
|
+
{{ content }}
|
|
18
|
+
</article>
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
---
|
|
2
|
+
layout: default
|
|
3
|
+
title: Publications
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
<h2>Publications</h2>
|
|
7
|
+
<ul class="pub-list">
|
|
8
|
+
{% for paper in site.data.publications.conferences %}
|
|
9
|
+
<li class="pub-item">
|
|
10
|
+
<div class="pub-title">{{ paper.title }}</div>
|
|
11
|
+
<div class="pub-authors">{{ paper.authors }}</div>
|
|
12
|
+
<div class="pub-meta">
|
|
13
|
+
{{ paper.conference }} · {{ paper.year }}
|
|
14
|
+
{% if paper.award %}
|
|
15
|
+
<span class="pub-award">🏆 {{ paper.award }}</span>
|
|
16
|
+
{% endif %}
|
|
17
|
+
</div>
|
|
18
|
+
<div class="pub-icons">
|
|
19
|
+
{% if paper.code %}<a href="{{ paper.code }}" title="Engine">⚙️</a>{% endif %}
|
|
20
|
+
{% if paper.bibtex %}<a href="{{ paper.bibtex }}" title="BibTeX">📄</a>{% endif %}
|
|
21
|
+
{% if paper.pdf_link %}<a href="{{ paper.pdf_link }}" title="PDF">📘</a>{% endif %}
|
|
22
|
+
</div>
|
|
23
|
+
</li>
|
|
24
|
+
{% endfor %}
|
|
25
|
+
</ul>
|
|
26
|
+
|
|
27
|
+
<h2>White Papers</h2>
|
|
28
|
+
<ul class="pub-list">
|
|
29
|
+
{% for paper in site.data.publications.white_papers %}
|
|
30
|
+
<li class="pub-item">
|
|
31
|
+
<div class="pub-title">{{ paper.title }}</div>
|
|
32
|
+
<div class="pub-authors">{{ paper.authors }}</div>
|
|
33
|
+
<div class="pub-meta">
|
|
34
|
+
{{ paper.conference }} · {{ paper.year }}
|
|
35
|
+
</div>
|
|
36
|
+
<div class="pub-icons">
|
|
37
|
+
{% if paper.code %}<a href="{{ paper.code }}" title="Engine">⚙️</a>{% endif %}
|
|
38
|
+
{% if paper.bibtex %}<a href="{{ paper.bibtex }}" title="BibTeX">📄</a>{% endif %}
|
|
39
|
+
{% if paper.pdf_link %}<a href="{{ paper.pdf_link }}" title="PDF">📘</a>{% endif %}
|
|
40
|
+
</div>
|
|
41
|
+
</li>
|
|
42
|
+
{% endfor %}
|
|
43
|
+
</ul>
|
|
@@ -0,0 +1,170 @@
|
|
|
1
|
+
body {
|
|
2
|
+
background: $bg;
|
|
3
|
+
font-family: 'Lucida Console', monospace;
|
|
4
|
+
color: $text;
|
|
5
|
+
line-height: 1.6;
|
|
6
|
+
max-width: 800px;
|
|
7
|
+
margin: 0 auto;
|
|
8
|
+
padding: 0 1rem;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.site-header {
|
|
12
|
+
padding: 1.5rem 0;
|
|
13
|
+
border-bottom: 1px solid $border;
|
|
14
|
+
margin-bottom: 2rem;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.site-nav {
|
|
18
|
+
display: flex;
|
|
19
|
+
justify-content: space-between;
|
|
20
|
+
align-items: center;
|
|
21
|
+
|
|
22
|
+
.logo {
|
|
23
|
+
font-weight: 700;
|
|
24
|
+
color: $accent;
|
|
25
|
+
text-decoration: none;
|
|
26
|
+
|
|
27
|
+
&-heart {
|
|
28
|
+
color: #e74c3c;
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.nav-links {
|
|
34
|
+
display: flex;
|
|
35
|
+
gap: 1.5rem;
|
|
36
|
+
|
|
37
|
+
a {
|
|
38
|
+
text-decoration: none;
|
|
39
|
+
color: $text;
|
|
40
|
+
position: relative;
|
|
41
|
+
|
|
42
|
+
&:hover {
|
|
43
|
+
color: $accent;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
&.active {
|
|
47
|
+
font-weight: 500;
|
|
48
|
+
color: $accent;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
&::after {
|
|
52
|
+
content: '';
|
|
53
|
+
position: absolute;
|
|
54
|
+
bottom: -2px;
|
|
55
|
+
left: 0;
|
|
56
|
+
width: 0;
|
|
57
|
+
height: 1px;
|
|
58
|
+
background: currentColor;
|
|
59
|
+
transition: width 0.3s ease;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
&:hover::after {
|
|
63
|
+
width: 100%;
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
// Footer
|
|
69
|
+
.site-footer {
|
|
70
|
+
margin-top: 3rem;
|
|
71
|
+
padding: 1.5rem 0;
|
|
72
|
+
border-top: 1px solid $border;
|
|
73
|
+
text-align: center;
|
|
74
|
+
color: #666;
|
|
75
|
+
font-size: 0.9rem;
|
|
76
|
+
|
|
77
|
+
a {
|
|
78
|
+
color: $accent;
|
|
79
|
+
text-decoration: none;
|
|
80
|
+
|
|
81
|
+
&:hover {
|
|
82
|
+
text-decoration: underline;
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
.heart {
|
|
87
|
+
color: #e74c3c;
|
|
88
|
+
animation: pulse 1.5s infinite;
|
|
89
|
+
display: inline-block;
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
@keyframes pulse {
|
|
94
|
+
0% { transform: scale(1); }
|
|
95
|
+
50% { transform: scale(1.1); }
|
|
96
|
+
100% { transform: scale(1); }
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
// Mobile
|
|
100
|
+
@media (max-width: 600px) {
|
|
101
|
+
.site-nav {
|
|
102
|
+
flex-direction: column;
|
|
103
|
+
gap: 1rem;
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
.nav-links {
|
|
107
|
+
flex-wrap: wrap;
|
|
108
|
+
justify-content: center;
|
|
109
|
+
}
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
.site-nav {
|
|
113
|
+
border-bottom: 2px solid var(--secondary); // Orange accent line
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
.pub-list {
|
|
117
|
+
list-style: none;
|
|
118
|
+
padding: 0;
|
|
119
|
+
margin: 0;
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
.pub-item {
|
|
123
|
+
background: #f3f3f3;
|
|
124
|
+
padding: 1em;
|
|
125
|
+
margin-bottom: 0.5em;
|
|
126
|
+
border-radius: 5px;
|
|
127
|
+
position: relative;
|
|
128
|
+
transition: background 0.2s ease-in-out;
|
|
129
|
+
|
|
130
|
+
&:nth-child(odd) {
|
|
131
|
+
background: #ffffff;
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
.pub-title {
|
|
135
|
+
font-weight: bold;
|
|
136
|
+
margin-bottom: 0.3em;
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
.pub-authors {
|
|
140
|
+
color: #444;
|
|
141
|
+
margin-bottom: 0.2em;
|
|
142
|
+
font-size: 0.95em;
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
.pub-meta {
|
|
146
|
+
font-size: 0.85em;
|
|
147
|
+
color: #777;
|
|
148
|
+
|
|
149
|
+
.pub-award {
|
|
150
|
+
margin-left: 0.5em;
|
|
151
|
+
color: #d48f00;
|
|
152
|
+
}
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
.pub-icons {
|
|
156
|
+
position: absolute;
|
|
157
|
+
top: 1em;
|
|
158
|
+
right: 1em;
|
|
159
|
+
|
|
160
|
+
a {
|
|
161
|
+
margin-left: 0.4em;
|
|
162
|
+
text-decoration: none;
|
|
163
|
+
font-size: 1em;
|
|
164
|
+
}
|
|
165
|
+
}
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
.pub-icons a[title="Engine"] {
|
|
169
|
+
color: #0072ce; // optional highlight color
|
|
170
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
// Core Colors
|
|
2
|
+
$primary: #003f5a; // Deep teal for titles/links
|
|
3
|
+
$secondary: #de6600; // Orange for interactive elements
|
|
4
|
+
$border: #8ab184; // Orange for interactive elements
|
|
5
|
+
$accent: #de6600; // Orange for interactive elements
|
|
6
|
+
|
|
7
|
+
$bg: white; // Mint background
|
|
8
|
+
$text: #003f5a; // Teal text (or #000 for better contrast)
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
|
3
|
+
|
|
4
|
+
<svg
|
|
5
|
+
width="61.43132mm"
|
|
6
|
+
height="61.431328mm"
|
|
7
|
+
viewBox="0 0 61.43132 61.431328"
|
|
8
|
+
version="1.1"
|
|
9
|
+
id="svg1"
|
|
10
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
11
|
+
xmlns:svg="http://www.w3.org/2000/svg">
|
|
12
|
+
<defs
|
|
13
|
+
id="defs1" />
|
|
14
|
+
<g
|
|
15
|
+
id="layer1"
|
|
16
|
+
transform="translate(-31.546987,-53.732528)">
|
|
17
|
+
<rect
|
|
18
|
+
style="opacity:1;fill:none;fill-opacity:1;stroke:#003333;stroke-width:0.6;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
|
|
19
|
+
id="rect1"
|
|
20
|
+
width="60.831322"
|
|
21
|
+
height="60.831322"
|
|
22
|
+
x="31.846989"
|
|
23
|
+
y="54.032528"
|
|
24
|
+
ry="2.4516971" />
|
|
25
|
+
<text
|
|
26
|
+
xml:space="preserve"
|
|
27
|
+
style="font-size:17.6389px;font-family:'Andale Mono';-inkscape-font-specification:'Andale Mono';text-align:center;writing-mode:lr-tb;direction:ltr;text-anchor:middle;opacity:1;fill:#ff0000;fill-opacity:1;stroke:#003333;stroke-width:0.600001;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
|
|
28
|
+
x="62.978317"
|
|
29
|
+
y="89.457825"
|
|
30
|
+
id="text1"><tspan
|
|
31
|
+
id="tspan1"
|
|
32
|
+
style="font-size:17.6389px;fill:#ff0000;fill-opacity:1;stroke-width:0.6"
|
|
33
|
+
x="62.978317"
|
|
34
|
+
y="89.457825">PDF</tspan></text>
|
|
35
|
+
</g>
|
|
36
|
+
</svg>
|
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg
|
|
3
|
+
width="120"
|
|
4
|
+
height="40"
|
|
5
|
+
viewBox="0 0 120 40"
|
|
6
|
+
version="1.1"
|
|
7
|
+
id="svg1"
|
|
8
|
+
sodipodi:docname="logo-simplezinho.svg"
|
|
9
|
+
inkscape:version="1.4.2 (1:1.4.2+202505120738+ebf0e940d0)"
|
|
10
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
11
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
12
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
13
|
+
xmlns:svg="http://www.w3.org/2000/svg">
|
|
14
|
+
<defs
|
|
15
|
+
id="defs1">
|
|
16
|
+
<inkscape:path-effect
|
|
17
|
+
effect="spiro"
|
|
18
|
+
id="path-effect5"
|
|
19
|
+
is_visible="true"
|
|
20
|
+
lpeversion="1" />
|
|
21
|
+
<clipPath
|
|
22
|
+
clipPathUnits="userSpaceOnUse"
|
|
23
|
+
id="clipPath5">
|
|
24
|
+
<ellipse
|
|
25
|
+
style="fill:#ff0000;fill-rule:evenodd"
|
|
26
|
+
id="ellipse5"
|
|
27
|
+
cx="9.8632164"
|
|
28
|
+
cy="20.584105"
|
|
29
|
+
rx="4.8243995"
|
|
30
|
+
ry="4.9316082" />
|
|
31
|
+
</clipPath>
|
|
32
|
+
</defs>
|
|
33
|
+
<sodipodi:namedview
|
|
34
|
+
id="namedview1"
|
|
35
|
+
pagecolor="#ffffff"
|
|
36
|
+
bordercolor="#000000"
|
|
37
|
+
borderopacity="0.25"
|
|
38
|
+
inkscape:showpageshadow="2"
|
|
39
|
+
inkscape:pageopacity="0.0"
|
|
40
|
+
inkscape:pagecheckerboard="0"
|
|
41
|
+
inkscape:deskcolor="#d1d1d1"
|
|
42
|
+
inkscape:zoom="9.3275858"
|
|
43
|
+
inkscape:cx="59.286509"
|
|
44
|
+
inkscape:cy="37.951943"
|
|
45
|
+
inkscape:window-width="1920"
|
|
46
|
+
inkscape:window-height="1011"
|
|
47
|
+
inkscape:window-x="0"
|
|
48
|
+
inkscape:window-y="32"
|
|
49
|
+
inkscape:window-maximized="1"
|
|
50
|
+
inkscape:current-layer="svg1" />
|
|
51
|
+
<rect
|
|
52
|
+
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:2.23521;stroke-linejoin:round;stroke-opacity:1"
|
|
53
|
+
id="rect2"
|
|
54
|
+
width="33.267258"
|
|
55
|
+
height="22.331955"
|
|
56
|
+
x="32.0392"
|
|
57
|
+
y="15.421824"
|
|
58
|
+
ry="9.2662563"
|
|
59
|
+
rx="4.5027728" />
|
|
60
|
+
<path
|
|
61
|
+
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:2.26772;stroke-linejoin:round;stroke-opacity:1"
|
|
62
|
+
d="M 32.805916,21.763402 34.842885,7.9334569 v 0 L 43.95564,20.905731 Z"
|
|
63
|
+
id="path3" />
|
|
64
|
+
<path
|
|
65
|
+
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:2.26772;stroke-linejoin:round;stroke-opacity:1"
|
|
66
|
+
d="M 65.124528,21.629054 63.087559,7.7991094 v 0 L 53.974804,20.771383 Z"
|
|
67
|
+
id="path3-0" />
|
|
68
|
+
<path
|
|
69
|
+
style="fill:#ffeeaa;fill-opacity:1;stroke:#ffeeaa;stroke-width:1.66425;stroke-linejoin:round;stroke-opacity:1"
|
|
70
|
+
d="m 39.794392,22.855387 h 8.000871 c 0,0 -0.438326,3.919267 -4.038535,4.143286 -3.157463,0.196469 -3.962336,-4.143286 -3.962336,-4.143286 z"
|
|
71
|
+
id="path5"
|
|
72
|
+
sodipodi:nodetypes="ccsc" />
|
|
73
|
+
<path
|
|
74
|
+
style="fill:#ffeeaa;fill-opacity:1;stroke:#ffeeaa;stroke-width:1.66425;stroke-linejoin:round;stroke-opacity:1"
|
|
75
|
+
d="m 52.016951,22.939334 h 8.000871 c 0,0 -0.438326,3.919267 -4.038535,4.143286 -3.157463,0.196469 -3.962336,-4.143286 -3.962336,-4.143286 z"
|
|
76
|
+
id="path5-7"
|
|
77
|
+
sodipodi:nodetypes="ccsc" />
|
|
78
|
+
<ellipse
|
|
79
|
+
style="fill:#1a1a1a;fill-rule:evenodd;stroke-width:1.19342"
|
|
80
|
+
id="path6"
|
|
81
|
+
cx="44.759708"
|
|
82
|
+
cy="23.210722"
|
|
83
|
+
rx="2.5194087"
|
|
84
|
+
ry="2.4121997" />
|
|
85
|
+
<ellipse
|
|
86
|
+
style="fill:#1a1a1a;fill-rule:evenodd;stroke-width:1.19342"
|
|
87
|
+
id="path6-9"
|
|
88
|
+
cx="57.170055"
|
|
89
|
+
cy="23.304991"
|
|
90
|
+
rx="2.5194087"
|
|
91
|
+
ry="2.4121997" />
|
|
92
|
+
</svg>
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg
|
|
3
|
+
width="35.502468"
|
|
4
|
+
height="32.205952"
|
|
5
|
+
viewBox="0 0 35.502468 32.205952"
|
|
6
|
+
version="1.1"
|
|
7
|
+
id="svg1"
|
|
8
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
9
|
+
xmlns:svg="http://www.w3.org/2000/svg">
|
|
10
|
+
<defs
|
|
11
|
+
id="defs1" />
|
|
12
|
+
<rect
|
|
13
|
+
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:2.23521;stroke-linejoin:round;stroke-opacity:1"
|
|
14
|
+
id="rect2"
|
|
15
|
+
width="33.267258"
|
|
16
|
+
height="22.331955"
|
|
17
|
+
x="1.1176051"
|
|
18
|
+
y="8.7563906"
|
|
19
|
+
ry="9.2662563"
|
|
20
|
+
rx="4.5027728" />
|
|
21
|
+
<path
|
|
22
|
+
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:2.26772;stroke-linejoin:round;stroke-opacity:1"
|
|
23
|
+
d="M 1.8843213,15.097968 3.9212903,1.2680231 v 0 L 13.034045,14.240297 Z"
|
|
24
|
+
id="path3" />
|
|
25
|
+
<path
|
|
26
|
+
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:2.26772;stroke-linejoin:round;stroke-opacity:1"
|
|
27
|
+
d="M 34.202933,14.96362 32.165964,1.1336756 v 0 L 23.053209,14.105949 Z"
|
|
28
|
+
id="path3-0" />
|
|
29
|
+
<path
|
|
30
|
+
style="fill:#ffeeaa;fill-opacity:1;stroke:#ffeeaa;stroke-width:1.66425;stroke-linejoin:round;stroke-opacity:1"
|
|
31
|
+
d="m 8.8727973,16.189953 h 8.0008707 c 0,0 -0.438326,3.919267 -4.038535,4.143286 -3.1574627,0.196469 -3.9623357,-4.143286 -3.9623357,-4.143286 z"
|
|
32
|
+
id="path5" />
|
|
33
|
+
<path
|
|
34
|
+
style="fill:#ffeeaa;fill-opacity:1;stroke:#ffeeaa;stroke-width:1.66425;stroke-linejoin:round;stroke-opacity:1"
|
|
35
|
+
d="m 21.095356,16.2739 h 8.000871 c 0,0 -0.438326,3.919267 -4.038535,4.143286 C 21.900229,20.613655 21.095356,16.2739 21.095356,16.2739 Z"
|
|
36
|
+
id="path5-7" />
|
|
37
|
+
<ellipse
|
|
38
|
+
style="fill:#1a1a1a;fill-rule:evenodd;stroke-width:1.19342"
|
|
39
|
+
id="path6"
|
|
40
|
+
cx="13.838114"
|
|
41
|
+
cy="16.545288"
|
|
42
|
+
rx="2.5194087"
|
|
43
|
+
ry="2.4121997" />
|
|
44
|
+
<ellipse
|
|
45
|
+
style="fill:#1a1a1a;fill-rule:evenodd;stroke-width:1.19342"
|
|
46
|
+
id="path6-9"
|
|
47
|
+
cx="26.248461"
|
|
48
|
+
cy="16.639557"
|
|
49
|
+
rx="2.5194087"
|
|
50
|
+
ry="2.4121997" />
|
|
51
|
+
</svg>
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg
|
|
3
|
+
width="37.502468"
|
|
4
|
+
height="34.020248"
|
|
5
|
+
viewBox="0 0 37.502468 34.020248"
|
|
6
|
+
version="1.1"
|
|
7
|
+
id="svg1"
|
|
8
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
9
|
+
xmlns:svg="http://www.w3.org/2000/svg">
|
|
10
|
+
<defs
|
|
11
|
+
id="defs1" />
|
|
12
|
+
<rect
|
|
13
|
+
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:2.36113;stroke-linejoin:round;stroke-opacity:1"
|
|
14
|
+
id="rect2"
|
|
15
|
+
width="35.141338"
|
|
16
|
+
height="23.590006"
|
|
17
|
+
x="1.1805648"
|
|
18
|
+
y="9.2496738"
|
|
19
|
+
ry="9.2662554"
|
|
20
|
+
rx="4.5027733" />
|
|
21
|
+
<path
|
|
22
|
+
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:2.39547;stroke-linejoin:round;stroke-opacity:1"
|
|
23
|
+
d="M 1.9904733,15.948499 4.1421923,1.3394559 v 0 L 13.768306,15.042512 Z"
|
|
24
|
+
id="path3" />
|
|
25
|
+
<path
|
|
26
|
+
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:2.39547;stroke-linejoin:round;stroke-opacity:1"
|
|
27
|
+
d="M 36.129725,15.806582 33.978005,1.1975401 v 0 L 24.351891,14.900595 Z"
|
|
28
|
+
id="path3-0" />
|
|
29
|
+
<path
|
|
30
|
+
style="fill:#ffeeaa;fill-opacity:1;stroke:#ffeeaa;stroke-width:1.758;stroke-linejoin:round;stroke-opacity:1"
|
|
31
|
+
d="m 9.3726383,17.102 h 8.4515927 c 0,0 -0.463019,4.140055 -4.266042,4.376694 C 10.222853,21.686231 9.3726383,17.102 9.3726383,17.102 Z"
|
|
32
|
+
id="path5" />
|
|
33
|
+
<path
|
|
34
|
+
style="fill:#ffeeaa;fill-opacity:1;stroke:#ffeeaa;stroke-width:1.758;stroke-linejoin:round;stroke-opacity:1"
|
|
35
|
+
d="m 22.283744,17.190676 h 8.451593 c 0,0 -0.463019,4.140055 -4.266042,4.376694 -3.335336,0.207537 -4.185551,-4.376694 -4.185551,-4.376694 z"
|
|
36
|
+
id="path5-7" />
|
|
37
|
+
<ellipse
|
|
38
|
+
style="fill:#1a1a1a;fill-rule:evenodd;stroke-width:1.26065"
|
|
39
|
+
id="path6"
|
|
40
|
+
cx="14.61767"
|
|
41
|
+
cy="17.477352"
|
|
42
|
+
rx="2.6613374"
|
|
43
|
+
ry="2.5480888" />
|
|
44
|
+
<ellipse
|
|
45
|
+
style="fill:#1a1a1a;fill-rule:evenodd;stroke-width:1.26065"
|
|
46
|
+
id="path6-9"
|
|
47
|
+
cx="27.727144"
|
|
48
|
+
cy="17.576931"
|
|
49
|
+
rx="2.6613374"
|
|
50
|
+
ry="2.5480888" />
|
|
51
|
+
</svg>
|
metadata
ADDED
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: simplezinho
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.1.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Giovana Morais
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2025-06-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: '4.3'
|
|
20
|
+
type: :runtime
|
|
21
|
+
prerelease: false
|
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
+
requirements:
|
|
24
|
+
- - "~>"
|
|
25
|
+
- !ruby/object:Gem::Version
|
|
26
|
+
version: '4.3'
|
|
27
|
+
description:
|
|
28
|
+
email:
|
|
29
|
+
- giovana.vmorais@gmail.com
|
|
30
|
+
executables: []
|
|
31
|
+
extensions: []
|
|
32
|
+
extra_rdoc_files: []
|
|
33
|
+
files:
|
|
34
|
+
- LICENSE.txt
|
|
35
|
+
- README.md
|
|
36
|
+
- _config.yml
|
|
37
|
+
- _data/publications.yml
|
|
38
|
+
- _includes/back_link.html
|
|
39
|
+
- _includes/footer.html
|
|
40
|
+
- _includes/head.html
|
|
41
|
+
- _includes/header.html
|
|
42
|
+
- _layouts/blog.html
|
|
43
|
+
- _layouts/default.html
|
|
44
|
+
- _layouts/page.html
|
|
45
|
+
- _layouts/post.html
|
|
46
|
+
- _layouts/publications.html
|
|
47
|
+
- _sass/simplezinho.scss
|
|
48
|
+
- _sass/variables.scss
|
|
49
|
+
- assets/css/main.scss
|
|
50
|
+
- assets/img/logo-pdf.svg
|
|
51
|
+
- assets/img/logo-simplezinho.svg
|
|
52
|
+
- assets/img/test-logo
|
|
53
|
+
- assets/img/test-logo.svg
|
|
54
|
+
homepage: https://giovana-morais.github.io/simplezinho
|
|
55
|
+
licenses:
|
|
56
|
+
- MIT
|
|
57
|
+
metadata: {}
|
|
58
|
+
post_install_message:
|
|
59
|
+
rdoc_options: []
|
|
60
|
+
require_paths:
|
|
61
|
+
- lib
|
|
62
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
63
|
+
requirements:
|
|
64
|
+
- - ">="
|
|
65
|
+
- !ruby/object:Gem::Version
|
|
66
|
+
version: '0'
|
|
67
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
68
|
+
requirements:
|
|
69
|
+
- - ">="
|
|
70
|
+
- !ruby/object:Gem::Version
|
|
71
|
+
version: '0'
|
|
72
|
+
requirements: []
|
|
73
|
+
rubygems_version: 3.3.5
|
|
74
|
+
signing_key:
|
|
75
|
+
specification_version: 4
|
|
76
|
+
summary: é simples, mas é trabalho honesto
|
|
77
|
+
test_files: []
|