neutralizing 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/.gitignore +6 -0
- data/404.html +25 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +21 -0
- data/README.md +88 -0
- data/_config.yml +56 -0
- data/_includes/footer.html +23 -0
- data/_includes/head.html +9 -0
- data/_includes/header.html +32 -0
- data/_layouts/default.html +15 -0
- data/_layouts/home.html +99 -0
- data/_layouts/page.html +7 -0
- data/_layouts/post.html +37 -0
- data/_posts/2025-01-26-example.html +12 -0
- data/_posts/2025-01-27-example-1.html +12 -0
- data/_posts/2025-01-28-example-2.html +12 -0
- data/about.markdown +20 -0
- data/assets/avatar/example-avatar.webp +0 -0
- data/assets/examples/example-1.png +0 -0
- data/assets/examples/example-2.png +0 -0
- data/assets/examples/example.png +0 -0
- data/assets/js/show_more_projects.js +15 -0
- data/index.markdown +6 -0
- data/neutralizing.gemspec +19 -0
- data/theme-preview.png +0 -0
- metadata +96 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 0ebf3fca5649deac7ae7936aa5867a9bcbbee5b050d49f23c4a75e8c9db8aa51
|
4
|
+
data.tar.gz: f5b87f50d999a9f0e778ffbe4b2b1ea39ffe08f89030488820bf0d0ff903838a
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: c59d686d2c56c57883251f1cfe4e5b6222d853a040716d23fca378187e7585456630bab25ec884e574bc7dbade9a417f9a25a5413193a36e5a878238a9236ede
|
7
|
+
data.tar.gz: 53480355df190aac9a36539850166574abd57e359a68b614d18ade94315986443cbc941c476f6e530eadd5885e21ae8ed68ce0aa02f7c1817cfa3d3fab388cbd
|
data/.gitignore
ADDED
data/404.html
ADDED
@@ -0,0 +1,25 @@
|
|
1
|
+
---
|
2
|
+
permalink: /404.html
|
3
|
+
layout: default
|
4
|
+
---
|
5
|
+
|
6
|
+
<style type="text/css" media="screen">
|
7
|
+
.container {
|
8
|
+
margin: 10px auto;
|
9
|
+
max-width: 600px;
|
10
|
+
text-align: center;
|
11
|
+
}
|
12
|
+
h1 {
|
13
|
+
margin: 30px 0;
|
14
|
+
font-size: 4em;
|
15
|
+
line-height: 1;
|
16
|
+
letter-spacing: -1px;
|
17
|
+
}
|
18
|
+
</style>
|
19
|
+
|
20
|
+
<div class="container mt-5">
|
21
|
+
<h1>404</h1>
|
22
|
+
|
23
|
+
<p><strong>Page not found :(</strong></p>
|
24
|
+
<p>The requested page could not be found.</p>
|
25
|
+
</div>
|
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2025 Nicolas
|
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,88 @@
|
|
1
|
+
# neutralizing
|
2
|
+
|
3
|
+
neutralizing is a portfolio theme made with jekyll and bootstrap
|
4
|
+
|
5
|
+
## Theme preview
|
6
|
+
|
7
|
+
<details>
|
8
|
+
<summary>📸 Show preview</summary>
|
9
|
+
|
10
|
+

|
11
|
+
|
12
|
+
</details>
|
13
|
+
|
14
|
+
## Installation
|
15
|
+
|
16
|
+
Add this line to your Jekyll site's `Gemfile`:
|
17
|
+
|
18
|
+
```ruby
|
19
|
+
gem "neutralizing"
|
20
|
+
```
|
21
|
+
|
22
|
+
And add this line to your Jekyll site's `_config.yml`:
|
23
|
+
|
24
|
+
```yaml
|
25
|
+
theme: neutralizing
|
26
|
+
```
|
27
|
+
|
28
|
+
And then execute:
|
29
|
+
|
30
|
+
$ bundle
|
31
|
+
|
32
|
+
Or install it yourself as:
|
33
|
+
|
34
|
+
$ gem install neutralizing
|
35
|
+
|
36
|
+
## Usage
|
37
|
+
|
38
|
+
To edit profile image, description and tools among others, you must add the following "config.yml" content and modify it as you prefer.
|
39
|
+
|
40
|
+
```yaml
|
41
|
+
title: "Portfolio"
|
42
|
+
|
43
|
+
avatar: "assets/avatar/example-avatar.webp" #profile picture for portfolio
|
44
|
+
name: "Your name"
|
45
|
+
|
46
|
+
#add here the technologies and tools you use
|
47
|
+
tools:
|
48
|
+
- "Ruby"
|
49
|
+
- "Ruby on Rails"
|
50
|
+
- "SQLite"
|
51
|
+
- "PostgreSQL"
|
52
|
+
- "Bootstrap"
|
53
|
+
- "Tailwind"
|
54
|
+
|
55
|
+
introduction: "Write something nice about yourself or whatever you want. This text should appear right below your tools."
|
56
|
+
|
57
|
+
social_username:
|
58
|
+
twitter-x: "twitter-x-username"
|
59
|
+
linkedin: "linkedin-username"
|
60
|
+
email: "username or only example@gmail.com"
|
61
|
+
github: "github-username"
|
62
|
+
|
63
|
+
social_link:
|
64
|
+
twitter-x: "https://x.com"
|
65
|
+
linkedin: "https://www.linkedin.com"
|
66
|
+
github: "https://github.com"
|
67
|
+
email: example@gmail.com
|
68
|
+
```
|
69
|
+
|
70
|
+
Examples of posts are also in the repository, which contains some extra tags such as: tools, website, thumbnail... \
|
71
|
+
visit: https://github.com/nicollinoxx/neutralizing/tree/master/_posts to see examples of posts.
|
72
|
+
|
73
|
+
## Contributing
|
74
|
+
|
75
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/nicollinoxx/neutralizing. 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.
|
76
|
+
|
77
|
+
## Development
|
78
|
+
|
79
|
+
To set up your environment to develop this theme, run `bundle install`.
|
80
|
+
|
81
|
+
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.
|
82
|
+
|
83
|
+
When your theme is released, only the files in `_layouts`, `_includes`, `_sass` and `assets` tracked with Git will be bundled.
|
84
|
+
To add a custom directory to your theme-gem, please edit the regexp in `neutralizing.gemspec` accordingly.
|
85
|
+
|
86
|
+
## License
|
87
|
+
|
88
|
+
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,56 @@
|
|
1
|
+
baseurl: ""
|
2
|
+
url: ""
|
3
|
+
|
4
|
+
#----------------------------------------------------------------------
|
5
|
+
title: "Portfolio"
|
6
|
+
|
7
|
+
avatar: "assets/avatar/example-avatar.webp" #profile picture for portfolio
|
8
|
+
name: "Your name"
|
9
|
+
|
10
|
+
#add here the technologies and tools you use
|
11
|
+
tools:
|
12
|
+
- "Ruby"
|
13
|
+
- "Ruby on Rails"
|
14
|
+
- "SQLite"
|
15
|
+
- "PostgreSQL"
|
16
|
+
- "Bootstrap"
|
17
|
+
- "Tailwind"
|
18
|
+
|
19
|
+
introduction: "Write something nice about yourself or whatever you want. This text should appear right below your tools."
|
20
|
+
|
21
|
+
social_username:
|
22
|
+
twitter-x: "twitter-x-username"
|
23
|
+
linkedin: "linkedin-username"
|
24
|
+
email: "username or only example@gmail.com"
|
25
|
+
github: "github-username"
|
26
|
+
|
27
|
+
social_link:
|
28
|
+
twitter-x: "https://x.com"
|
29
|
+
linkedin: "https://www.linkedin.com"
|
30
|
+
github: "https://github.com"
|
31
|
+
email: example@gmail.com
|
32
|
+
#--------------------------------------------------------------------
|
33
|
+
|
34
|
+
# Build settings
|
35
|
+
plugins:
|
36
|
+
- jekyll-feed
|
37
|
+
|
38
|
+
# Exclude from processing.
|
39
|
+
# The following items will not be processed, by default.
|
40
|
+
# Any item listed under the `exclude:` key here will be automatically added to
|
41
|
+
# the internal "default list".
|
42
|
+
#
|
43
|
+
# Excluded items can be processed by explicitly listing the directories or
|
44
|
+
# their entries' file path in the `include:` list.
|
45
|
+
#
|
46
|
+
# exclude:
|
47
|
+
# - .sass-cache/
|
48
|
+
# - .jekyll-cache/
|
49
|
+
# - gemfiles/
|
50
|
+
# - Gemfile
|
51
|
+
# - Gemfile.lock
|
52
|
+
# - node_modules/
|
53
|
+
# - vendor/bundle/
|
54
|
+
# - vendor/cache/
|
55
|
+
# - vendor/gems/
|
56
|
+
# - vendor/ruby/
|
@@ -0,0 +1,23 @@
|
|
1
|
+
{% if page.layout != 'default' %}
|
2
|
+
<footer class="text-center py-4 bg-dark text-light">
|
3
|
+
<div class="container my-2">
|
4
|
+
<p>© {{ site.time | date: "%Y" }} - {{ site.name }}</p>
|
5
|
+
|
6
|
+
<p>
|
7
|
+
Portfolio made with <a href="https://jekyllrb.com/" target="_blank" rel="noopener noreferrer">Jekyll</a> and <a href="https://getbootstrap.com/" target="_blank" rel="noopener noreferrer">Bootstrap</a> tools.
|
8
|
+
<br>
|
9
|
+
<i class="bi bi-tools"></i>
|
10
|
+
</p>
|
11
|
+
|
12
|
+
<div class="d-flex align-items-center justify-content-between my-4">
|
13
|
+
<hr class="flex-grow-1 me-3">
|
14
|
+
<a class="link-underline-dark" href="https://github.com/nicollinoxx/neutralizing-theme">neutralizing-theme</a>
|
15
|
+
<hr class="flex-grow-1 ms-3">
|
16
|
+
</div>
|
17
|
+
|
18
|
+
<button onclick="window.scrollTo({ top: 0, behavior: 'smooth' })" class="btn btn-light mt-2">
|
19
|
+
back to top
|
20
|
+
</button>
|
21
|
+
</div>
|
22
|
+
</footer>
|
23
|
+
{% endif %}
|
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
|
+
<title>{{ page.title }}</title>
|
5
|
+
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.3.2/css/bootstrap.min.css">
|
6
|
+
<script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.3.2/js/bootstrap.bundle.min.js"></script>
|
7
|
+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons/font/bootstrap-icons.css">
|
8
|
+
<script src="/assets/js/show_more_projects.js"></script>
|
9
|
+
</head>
|
@@ -0,0 +1,32 @@
|
|
1
|
+
{% if page.layout != 'default' %}
|
2
|
+
<header class="bg-light py-2 border-bottom fixed-top">
|
3
|
+
<nav class="container navbar navbar-expand-lg bg-body-tertiary">
|
4
|
+
<div class="container-fluid">
|
5
|
+
<a class="navbar-brand fw-bold text-primary" href="/">{{ site.title }}</a>
|
6
|
+
{% if page.layout == "home" %}
|
7
|
+
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
|
8
|
+
<span class="navbar-toggler-icon"></span>
|
9
|
+
</button>
|
10
|
+
<div class="collapse navbar-collapse justify-content-end" id="navbarNav">
|
11
|
+
<ul class="navbar-nav">
|
12
|
+
|
13
|
+
<li class="nav-item">
|
14
|
+
<a class="nav-link active" aria-current="page" href="#">Profile</a>
|
15
|
+
</li>
|
16
|
+
<li class="nav-item">
|
17
|
+
<a class="nav-link" href="#section-posts">Projects</a>
|
18
|
+
</li>
|
19
|
+
<li class="nav-item">
|
20
|
+
<a class="nav-link" href="#section-social">Social</a>
|
21
|
+
</li>
|
22
|
+
<li class="nav-item">
|
23
|
+
<a class="nav-link" href="/about/">About</a>
|
24
|
+
</li>
|
25
|
+
|
26
|
+
</ul>
|
27
|
+
</div>
|
28
|
+
{% endif %}
|
29
|
+
</div>
|
30
|
+
</nav>
|
31
|
+
</header>
|
32
|
+
{% endif %}
|
@@ -0,0 +1,15 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html lang="en">
|
3
|
+
<head>
|
4
|
+
{% include head.html %}
|
5
|
+
</head>
|
6
|
+
<body class="{% if page.layout != 'home' %}d-flex flex-column vh-100{% endif %}">
|
7
|
+
{% include header.html %}
|
8
|
+
|
9
|
+
<main class="{% if page.layout != 'home' %} mt-5 flex-grow-1 {% endif %}">
|
10
|
+
{{ content }}
|
11
|
+
</main>
|
12
|
+
|
13
|
+
{% include footer.html %}
|
14
|
+
</body>
|
15
|
+
</html>
|
data/_layouts/home.html
ADDED
@@ -0,0 +1,99 @@
|
|
1
|
+
---
|
2
|
+
layout: default
|
3
|
+
---
|
4
|
+
|
5
|
+
<main class="text-center">
|
6
|
+
<div id="section-profile" class="bg-secondary text-light py-5">
|
7
|
+
<div class="container mt-5">
|
8
|
+
<img src="{{ site.avatar | relative_url }}" alt="avatar" class="rounded-circle img-fluid" style="width: 230px; height: 230px;">
|
9
|
+
<h2 class="fw-bold my-4">{{ site.name }}</h2>
|
10
|
+
|
11
|
+
<ul class="list-unstyled d-flex flex-wrap justify-content-center gap-3">
|
12
|
+
{% for tool in site.tools %}
|
13
|
+
<li class="text-dark bg-light rounded px-4 py-2">
|
14
|
+
{{ tool }}
|
15
|
+
</li>
|
16
|
+
{% endfor %}
|
17
|
+
</ul>
|
18
|
+
|
19
|
+
<div class="d-flex align-items-center justify-content-between my-2">
|
20
|
+
<hr class="flex-grow-1 me-3">
|
21
|
+
<i class="bi bi-stars text-primary h1"></i>
|
22
|
+
<hr class="flex-grow-1 ms-3">
|
23
|
+
</div>
|
24
|
+
|
25
|
+
<p class="text-center">{{ site.introduction }}</p>
|
26
|
+
</div>
|
27
|
+
</div>
|
28
|
+
|
29
|
+
<div id="section-posts" class="py-5">
|
30
|
+
<div class="container mt-5 mb-2">
|
31
|
+
<h1 class="fw-bold mb-2">Projects</h1>
|
32
|
+
|
33
|
+
<div class="d-flex align-items-center justify-content-between my-2">
|
34
|
+
<hr class="flex-grow-1 me-3">
|
35
|
+
<i class="bi bi-star-fill text-primary h1"></i>
|
36
|
+
<hr class="flex-grow-1 ms-3">
|
37
|
+
</div>
|
38
|
+
|
39
|
+
<div class="d-flex flex-wrap justify-content-center gap-4">
|
40
|
+
{% assign sorted_posts = site.posts | sort: "date" | reverse %}
|
41
|
+
{% for post in sorted_posts %}
|
42
|
+
<a href="{{ post.url }}" class="post {% if forloop.index > 3 %}d-none{% endif %}">
|
43
|
+
<div class="d-flex flex-column shadow rounded">
|
44
|
+
<img src="{{ post.thumbnail | relative_url }}" class="object-fit-cover img-fluid" alt="{{ post.title }}" style="width: 24rem; height: 14rem;">
|
45
|
+
<h1 class="h6 my-3">{{ post.title }}</h1>
|
46
|
+
</div>
|
47
|
+
</a>
|
48
|
+
{% endfor %}
|
49
|
+
</div>
|
50
|
+
|
51
|
+
<hr>
|
52
|
+
|
53
|
+
{% if site.posts.size > 3 %}
|
54
|
+
<button id="toggle-posts" class="btn btn-primary my-3">Show More</button>
|
55
|
+
{% endif %}
|
56
|
+
</div>
|
57
|
+
</div>
|
58
|
+
|
59
|
+
<div id="section-social" class="bg-secondary-subtle py-5">
|
60
|
+
<div class="container mt-5 mb-2">
|
61
|
+
<h1 class="fw-bold">Social</h1>
|
62
|
+
|
63
|
+
<div class="d-flex align-items-center justify-content-between my-3">
|
64
|
+
<hr class="flex-grow-1 me-3">
|
65
|
+
<i class="bi bi-globe text-primary h1"></i>
|
66
|
+
<hr class="flex-grow-1 ms-3">
|
67
|
+
</div>
|
68
|
+
|
69
|
+
<p>Below is a list of social contacts</p>
|
70
|
+
|
71
|
+
<ul class="list-unstyled d-flex flex-wrap justify-content-center gap-3 my-5">
|
72
|
+
<li>
|
73
|
+
<a class="text-dark bg-light shadow rounded p-2" href="{{ site.social_link.twitter-x }}">
|
74
|
+
<i class="bi bi-twitter-x me-2"></i>
|
75
|
+
{{ site.social_username.twitter-x }}
|
76
|
+
</a>
|
77
|
+
</li>
|
78
|
+
<li>
|
79
|
+
<a class="text-dark bg-light shadow rounded p-2" href="{{ site.social_link.linkedin }}">
|
80
|
+
<i class="bi bi-linkedin me-2"></i>
|
81
|
+
{{ site.social_username.linkedin }}
|
82
|
+
</a>
|
83
|
+
</li>
|
84
|
+
<li>
|
85
|
+
<a class="text-dark bg-light shadow rounded p-2" href="{{ site.social_link.github }}">
|
86
|
+
<i class="bi bi-github me-2"></i>
|
87
|
+
{{ site.social_username.github}}
|
88
|
+
</a>
|
89
|
+
</li>
|
90
|
+
<li>
|
91
|
+
<a class="text-dark bg-light shadow rounded p-2" href="mailto:{{ site.social_link.email }}" target="_blank">
|
92
|
+
<i class="bi bi-envelope me-2"></i>
|
93
|
+
{{ site.social_username.email }}
|
94
|
+
</a>
|
95
|
+
</li>
|
96
|
+
</ul>
|
97
|
+
</div>
|
98
|
+
</div>
|
99
|
+
</main>
|
data/_layouts/page.html
ADDED
data/_layouts/post.html
ADDED
@@ -0,0 +1,37 @@
|
|
1
|
+
---
|
2
|
+
layout: default
|
3
|
+
---
|
4
|
+
|
5
|
+
<style media="screen">
|
6
|
+
img,video {max-height: 370px;}
|
7
|
+
</style>
|
8
|
+
|
9
|
+
<div class="container mt-5">
|
10
|
+
<h1>{{ page.title }}</h1>
|
11
|
+
<p class="m-1 text-secondary">{{ page.date }}</p>
|
12
|
+
|
13
|
+
{% if page.website %}
|
14
|
+
<div class="my-2">
|
15
|
+
<i class="bi bi-link"></i> <a href="{{ page.website }}">See this project online</a> <i class="bi bi-link"></i>
|
16
|
+
</div>
|
17
|
+
{% endif %}
|
18
|
+
|
19
|
+
{% if page.thumbnail %}
|
20
|
+
<img src="{{ page.thumbnail }}" alt="thumbnail" class="img-fluid mx-auto d-block my-3">
|
21
|
+
{% endif %}
|
22
|
+
|
23
|
+
{% if page.tools %}
|
24
|
+
<ul class="list-unstyled d-flex flex-wrap gap-1 my-4">
|
25
|
+
<span class="p-1">Tools:</span>
|
26
|
+
{% for tool in page.tools %}
|
27
|
+
<li class="text-light bg-secondary py-1 px-2 rounded">
|
28
|
+
{{ tool }}
|
29
|
+
</li>
|
30
|
+
{% endfor %}
|
31
|
+
</ul>
|
32
|
+
{% endif %}
|
33
|
+
|
34
|
+
<div class="mb-5">
|
35
|
+
{{ content | replace: "<video", "<video class=' img-fluid mx-auto d-block bg-dark'" }}
|
36
|
+
</div>
|
37
|
+
</div>
|
@@ -0,0 +1,12 @@
|
|
1
|
+
---
|
2
|
+
layout: post
|
3
|
+
title: "Example project"
|
4
|
+
thumbnail: "/assets/examples/example.png"
|
5
|
+
website: http://example.com
|
6
|
+
date: 2025-01-26 17:18:41 -0300
|
7
|
+
tools: [Ruby, Ruby on Rails, Tailwind]
|
8
|
+
---
|
9
|
+
|
10
|
+
<h1>Beautiful example project</h1>
|
11
|
+
|
12
|
+
<p>A text about the project</p>
|
@@ -0,0 +1,12 @@
|
|
1
|
+
---
|
2
|
+
layout: post
|
3
|
+
title: "Example-1 project"
|
4
|
+
thumbnail: "/assets/examples/example-1.png"
|
5
|
+
website: null
|
6
|
+
date: 2025-01-27 17:21:41 -0300
|
7
|
+
tools: [Ruby, Jekyll, bootstrap]
|
8
|
+
---
|
9
|
+
|
10
|
+
<h1>Beautiful example-1 project</h1>
|
11
|
+
|
12
|
+
<p>A text about the project</p>
|
@@ -0,0 +1,12 @@
|
|
1
|
+
---
|
2
|
+
layout: post
|
3
|
+
title: "Example-2 project"
|
4
|
+
thumbnail: "/assets/examples/example-2.png"
|
5
|
+
website: null
|
6
|
+
date: 2025-01-28 21:16:41 -0300
|
7
|
+
tools: [Python, Javascript, Jekyll, bootstrap]
|
8
|
+
---
|
9
|
+
|
10
|
+
<h1>Beautiful example-2 project</h1>
|
11
|
+
|
12
|
+
<p>A text about the project</p>
|
data/about.markdown
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
---
|
2
|
+
layout: page
|
3
|
+
title: About
|
4
|
+
permalink: /about/
|
5
|
+
---
|
6
|
+
|
7
|
+
# About321
|
8
|
+
|
9
|
+
This is the base Jekyll theme. You can find out more info about customizing your Jekyll theme, as well as basic Jekyll usage documentation at [jekyllrb.com](https://jekyllrb.com/)
|
10
|
+
|
11
|
+
You can find the source code for Minima at GitHub:
|
12
|
+
[jekyll][jekyll-organization] /
|
13
|
+
[minima](https://github.com/jekyll/minima)
|
14
|
+
|
15
|
+
You can find the source code for Jekyll at GitHub:
|
16
|
+
[jekyll][jekyll-organization] /
|
17
|
+
[jekyll](https://github.com/jekyll/jekyll)
|
18
|
+
|
19
|
+
|
20
|
+
[jekyll-organization]: https://github.com/jekyll
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -0,0 +1,15 @@
|
|
1
|
+
document.addEventListener('DOMContentLoaded', function () {
|
2
|
+
const toggleButton = document.getElementById('toggle-posts');
|
3
|
+
const posts = document.querySelectorAll('.post');
|
4
|
+
let visibleCount = 3;
|
5
|
+
|
6
|
+
toggleButton.addEventListener('click', function () {
|
7
|
+
visibleCount = visibleCount >= posts.length ? 3 : visibleCount + 3;
|
8
|
+
|
9
|
+
posts.forEach((post, index) =>
|
10
|
+
post.classList.toggle('d-none', index >= visibleCount)
|
11
|
+
);
|
12
|
+
|
13
|
+
toggleButton.textContent = visibleCount >= posts.length ? 'Show Less' : 'Show More';
|
14
|
+
});
|
15
|
+
});
|
data/index.markdown
ADDED
@@ -0,0 +1,19 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
Gem::Specification.new do |spec|
|
4
|
+
spec.required_ruby_version = ">= 3.0.0"
|
5
|
+
|
6
|
+
spec.name = "neutralizing"
|
7
|
+
spec.version = "0.1.0"
|
8
|
+
spec.authors = ["Nicolas"]
|
9
|
+
spec.email = ["nicolasalmeida321@gmail.com"]
|
10
|
+
|
11
|
+
spec.summary = %{"A bootstrap powered Jekyll theme for portfolio websites."}
|
12
|
+
spec.homepage = "https://github.com/nicollinoxx/neutralizing"
|
13
|
+
spec.license = "MIT"
|
14
|
+
|
15
|
+
spec.files = `git ls-files -z`.split("\x0").select { |f| f.match(%r!^(assets|_data|_layouts|_includes|_sass|LICENSE|README|_config\.yml|)!i) }
|
16
|
+
|
17
|
+
spec.add_runtime_dependency "jekyll", "~> 4.3"
|
18
|
+
spec.add_runtime_dependency "jekyll-feed", "~> 0.15"
|
19
|
+
end
|
data/theme-preview.png
ADDED
Binary file
|
metadata
ADDED
@@ -0,0 +1,96 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: neutralizing
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Nicolas
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2025-02-01 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
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: jekyll-feed
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0.15'
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0.15'
|
41
|
+
description:
|
42
|
+
email:
|
43
|
+
- nicolasalmeida321@gmail.com
|
44
|
+
executables: []
|
45
|
+
extensions: []
|
46
|
+
extra_rdoc_files: []
|
47
|
+
files:
|
48
|
+
- ".gitignore"
|
49
|
+
- 404.html
|
50
|
+
- Gemfile
|
51
|
+
- LICENSE.txt
|
52
|
+
- README.md
|
53
|
+
- _config.yml
|
54
|
+
- _includes/footer.html
|
55
|
+
- _includes/head.html
|
56
|
+
- _includes/header.html
|
57
|
+
- _layouts/default.html
|
58
|
+
- _layouts/home.html
|
59
|
+
- _layouts/page.html
|
60
|
+
- _layouts/post.html
|
61
|
+
- _posts/2025-01-26-example.html
|
62
|
+
- _posts/2025-01-27-example-1.html
|
63
|
+
- _posts/2025-01-28-example-2.html
|
64
|
+
- about.markdown
|
65
|
+
- assets/avatar/example-avatar.webp
|
66
|
+
- assets/examples/example-1.png
|
67
|
+
- assets/examples/example-2.png
|
68
|
+
- assets/examples/example.png
|
69
|
+
- assets/js/show_more_projects.js
|
70
|
+
- index.markdown
|
71
|
+
- neutralizing.gemspec
|
72
|
+
- theme-preview.png
|
73
|
+
homepage: https://github.com/nicollinoxx/neutralizing
|
74
|
+
licenses:
|
75
|
+
- MIT
|
76
|
+
metadata: {}
|
77
|
+
post_install_message:
|
78
|
+
rdoc_options: []
|
79
|
+
require_paths:
|
80
|
+
- lib
|
81
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
82
|
+
requirements:
|
83
|
+
- - ">="
|
84
|
+
- !ruby/object:Gem::Version
|
85
|
+
version: 3.0.0
|
86
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
87
|
+
requirements:
|
88
|
+
- - ">="
|
89
|
+
- !ruby/object:Gem::Version
|
90
|
+
version: '0'
|
91
|
+
requirements: []
|
92
|
+
rubygems_version: 3.2.3
|
93
|
+
signing_key:
|
94
|
+
specification_version: 4
|
95
|
+
summary: '"A bootstrap powered Jekyll theme for portfolio websites."'
|
96
|
+
test_files: []
|