-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
feece50
commit 932b054
Showing
23 changed files
with
171 additions
and
49 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,10 @@ | ||
plugins: | ||
- jekyll-feed | ||
- jekyll-remote-theme | ||
- jekyll-seo-tag | ||
- jekyll-sitemap | ||
- jekyll-timeago | ||
- jekyll-thumbnail-img | ||
- jekyll-toc | ||
title: Noe Nieto | ||
tagline: Mi sitio personal | Personal site | ||
email: [email protected] | ||
|
@@ -33,7 +34,8 @@ webmaster_verifications: | |
yandex: 1234 | ||
baidu: 1234 | ||
facebook: 1234 | ||
remote_theme: chrisrhymes/[email protected] | ||
# remote_theme: chrisrhymes/[email protected] | ||
theme: bulma-clean-theme | ||
google_analytics: UA-34700214-1 | ||
|
||
# Disqus | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
{% capture thumb %}{% thumbnail_img include.img 48 %}{% endcapture %} | ||
{% include image-modal.html ratio="is-48x48" link=thumb alt="Example image" large_link=include.img %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
Jekyll::Hooks.register :site, :post_read do |site| | ||
# Define the directories to search for images | ||
image_directories = ['assets/images', 'images', '_posts'] | ||
|
||
# Initialize the image count | ||
image_count = 0 | ||
|
||
# Supported image extensions | ||
image_extensions = ['.jpg', '.jpeg', '.png', '.gif', '.bmp', '.svg', '.webp'] | ||
|
||
# Iterate through the specified directories | ||
image_directories.each do |dir| | ||
Dir.glob(File.join(site.source, dir, '**', '*')) do |file| | ||
if image_extensions.include?(File.extname(file).downcase) | ||
image_count += 1 | ||
end | ||
end | ||
end | ||
|
||
# Initialize the draft count | ||
draft_count = 0 | ||
|
||
# Path to the _drafts directory | ||
drafts_dir = File.join(site.source, '_drafts') | ||
|
||
# Check if the _drafts directory exists | ||
if Dir.exist?(drafts_dir) | ||
# Count the number of markdown files in the _drafts directory | ||
draft_count = Dir.glob(File.join(drafts_dir, '**', '*.{md,markdown}')).size | ||
end | ||
|
||
site.config['stats'] = { | ||
'posts' => site.posts.size, | ||
'drafts' => draft_count, | ||
'pages' => site.pages.size, | ||
'Images' => image_count | ||
} | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
--- | ||
title: NoeNieto.com is powered by ... | ||
subtitle: What is this site made of? | ||
layout: page | ||
hero_height: is-small | ||
hero_darken: true | ||
--- | ||
|
||
## Technologies | ||
|
||
* [Jekyll](https://jekyllrb.com/) | ||
- Version: {{jekyll.version}} | ||
- Plugins: | ||
- [jekyll-feed](https://github.com/jekyll/jekyll-feed) | ||
- [jekyll-seo-tag](https://github.com/jekyll/jekyll-seo-tag) | ||
- [jekyll-sitemap](https://github.com/jekyll/jekyll-sitemap) | ||
- [jekyll-timeago](https://github.com/markets/jekyll-timeago) | ||
- [jekyll-thumbnail-img](https://github.com/oturpe/jekyll-thumbnail-generator) | ||
- [Bulma Clean Theme](https://www.csrhymes.com/bulma-clean-theme/) ({{theme.description}}) version `{{theme.version}}`, built by [C.S. Rhymes](https://www.csrhymes.com/) which uses [Bulma CSS](https://bulma.io/). | ||
* I used to host this site on [opalstack](https://github.com/misaelnieto/misaelnieto.github.io/blob/615f30a7791f9bfd4e6243b03f7ef000d797630f/.github/workflows/jekyll.yml) but moved it to [vercel](https://vercel.com/) on 2023 to take advantage of their free tier. You can see the [vercel configuration file](https://github.com/misaelnieto/misaelnieto.github.io/blob/master/vercel.json). | ||
* The source code is hosted on my [github](https://github.com/misaelnieto/misaelnieto.github.io) repository. | ||
|
||
## Site stats | ||
|
||
* Posts count: {{ site.stats.posts }} | ||
* Pages count: {{ site.stats.pages }} | ||
* Drafts: {{site.stats.draft_count }} | ||
* Pages images: {{ site.stats.images }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
--- | ||
layout: page | ||
title: Limoncito | ||
toc: true | ||
--- | ||
|
||
|
||
|
||
## ¿Cómo puedo eliminar mi cuenta de usuario y todos mis datos de la aplicación Limoncito? | ||
|
||
|
||
1. Abre la aplicación móvil de Limoncito. | ||
2. Localiza y accede a la sección de ajustes/configuración de la cuenta de usuario. | ||
3. Busca y selecciona la opción para "Eliminar cuenta de usuario". | ||
4. En la pantalla de eliminación de cuenta, proporciona tu correo electrónico y contraseña asociados a la cuenta. | ||
5. Confirma la eliminación de la cuenta. Esto borrará de forma permanente tu cuenta de usuario junto con todos los datos y libretas que hayas creado en la aplicación Limoncito. | ||
6. Indica si hay algún aspecto específico de la aplicación que no te haya gustado y que haya motivado tu decisión de eliminar la cuenta. | ||
|