Skip to content

Commit

Permalink
Cover images, new hero as svg
Browse files Browse the repository at this point in the history
  • Loading branch information
misaelnieto committed Jul 10, 2024
1 parent 9a6afa7 commit a6d87a8
Show file tree
Hide file tree
Showing 10 changed files with 376 additions and 8 deletions.
1 change: 0 additions & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,4 @@ group :jekyll_plugins do
gem 'jekyll-timeago'
gem 'jekyll-thumbnail-img'
gem 'bulma-clean-theme', '~> 1.0', '>= 1.0.2'
gem 'jekyll-toc'
end
23 changes: 23 additions & 0 deletions _includes/hero.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<section
class="hero {% if page.hero_height %} {{ page.hero_height }} {% else %} is-medium {% endif %} is-bold is-primary"
{% if page.hero_image %}
style="background: url('{{ page.hero_image }}') no-repeat center center; background-size: cover;"
{% endif %}
{% if page.hero_svg %}
style="background-image: url('{{ page.hero_svg }}'); background-blend-mode: soft-light;"
{% endif %}
>
<div class="hero-body {% if page.hero_darken %} hero-darken {% endif %}">
<div class="container">
<h1 class="title is-2">{{ page.title }}</h1>
<p class="subtitle is-3">{{ page.subtitle }}</p>
{% if page.hero_link %}
<div class="my-4">
<a href="{{ page.hero_link | relative_url }}" class="button is-info is-large">
{{- page.hero_link_text -}}
</a>
</div>
{% endif %}
</div>
</div>
</section>
4 changes: 2 additions & 2 deletions _layouts/landing-page.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<figure class="image is-1by1 m-3">
<img
class="is-rounded-corner"
src="{{ site.author.picture | absolute_url }}"
src="{{ site.author.picture | relative_url }}"
alt="{{ site.author.name }} - {{ site.author.description}}"
/>
</figure>
Expand Down Expand Up @@ -55,7 +55,7 @@
{% include frontpage_link.html url="/demos" icon="fa-solid fa-palette" title="Demos tools and toys" %}
</p>
<p class="card-footer-item">
{% include frontpage_link.html url="/blog" icon="fa-solid fa-pen-nib" title="My blog"%}
{% include frontpage_link.html url="/posts" icon="fa-solid fa-pen-nib" title="My blog"%}
</p>
</footer>
<footer class="card-footer-item">
Expand Down
6 changes: 4 additions & 2 deletions _posts/2022-10-24-fedora-silverblue-sshd-server.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
---
published: true
summary: Instrucciones para configurar el accesso ssh a fedora silverblue
image: 'https://unsplash.com/photos/rL_xEyhiFWM'
image: /media/card_images/a-silver-blue-fedora-hat-besides-a-electrical-sock.svg
title: Instalacion de servidor sshd en Fedora Silverblue
layout: post
---
## Instalacion de servidor sshd en Fedora Silverblue


He estado usando Fedora Silverblue en mi laptop personal desde hace varias semanas y hoy quise instalar un servidor sshd en mi laptop. Creí que la solución sería algún comando con rpm-ostree, pero no fue necesario! El servidor de openssh ya viene preinstalado en la imagen de silverblue, así que solo fue necesario activar el servicio y arrancarlo.

Expand Down
7 changes: 5 additions & 2 deletions _posts/2024-05-02-nube-de-palabras-en-inkscape.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
---
layout: post
title: "Nube de palabras en Inkscape"
categories:
- Diseño
- Español
- Diseño
- Español
tags: inkscape
summary: Pequeña guía para hacer una nube de palabras (o tag cloud) en Inkscape
image: https://unsplash.com/es/fotos/texto-manuscrito-00nHr1Lpq6w
published: true
hero_svg: /media/heroes/signal.svg
image: /media/card_images/wall-of-words.svg
---
## Nube de palabras en Inkscape

Expand Down
5 changes: 5 additions & 0 deletions assets/css/app.scss
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,8 @@ figure .is-rounded-corner {
border-radius: var(--bulma-radius-large);
}

.hero-body {
.title {
text-shadow: #555 1px 1px 2px;
}
}
2 changes: 1 addition & 1 deletion demos.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ hero_image: /media/unsplash/tools_n_demos.png

## Tools

- [Limoncito](projects/limoncito/) - A simple expense/income notebook
- [Limoncito]({{ '/projects/limoncito/' | relative_url}}) - A simple expense/income notebook

- [CHPT Converter](https://demos.noenieto.com/chpt-konvertilo/){:target="_blank"}.
([<i class="fab fa-github-alt"></i>](https://github.com/misaelnieto/chpt-konvertilo){:target="_blank"})
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
287 changes: 287 additions & 0 deletions media/card_images/wall-of-words.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 12 additions & 0 deletions media/heroes/signal.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit a6d87a8

Please sign in to comment.