Skip to content

Commit 9865290

Browse files
committed
[20260402] 2026 copyright update
1 parent 0c45d2e commit 9865290

5 files changed

Lines changed: 10 additions & 9 deletions

File tree

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2025 Alejandro Asensio
3+
Copyright (c) 2026 Alejandro Asensio
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

content/portfolio/microservice-webapp/index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ techs: [Java, Spring Boot, Websockets, Message queue, Docker, k3s]
77
designs: [IntelliJ IDEA, Lens, Proxmox VE]
88
thumbnail: microservice-webapp/microservice-webapp_pic.png
99
projectUrl: https://github.com/aaseper/microservice-restful-webapp
10+
featured: true
1011
---
1112

1213
[This repository](https://github.com/aaseper/microservice-restful-webapp) hosts the source code and required files to deploy and run a distributed application whose purpose is to simulate a management webapp to generate and manage wind farms.

content/portfolio/portfolio/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ work: [Automation, Static website, Workflow, Pipeline]
66
techs: [Hugo, GitHub Actions, CI/CD]
77
designs: [VSCodium, GitHub Pages]
88
thumbnail: portfolio/portfolio_pic.png
9-
projectUrl: https://github.com/aaseper/portfolio-hugo-ci-cd
9+
projectUrl: https://github.com/aaseper/aaseper.github.io
1010
---
1111

12-
[This project](https://github.com/aaseper/portfolio-hugo-ci-cd) provides a solution for automatically deploying and maintaining a Hugo static website portfolio. It leverages GitHub Actions to set up a CI/CD (Continuous Integration and Continuous Deployment) pipeline. This pipeline automates the entire process, from building your website to deploying it to GitHub Pages.
12+
[This project](https://github.com/aaseper/aaseper.github.io) provides a solution for automatically deploying and maintaining a Hugo static website portfolio. It leverages GitHub Actions to set up a CI/CD (Continuous Integration and Continuous Deployment) pipeline. This pipeline automates the entire process, from building your website to deploying it to GitHub Pages.
1313

1414
The benefits are twofold: it saves you time and effort by eliminating manual steps, and it reduces the risk of errors by ensuring a consistent and automated deployment process. The included architecture diagram provides a clear visualization of this workflow, highlighting the steps involved when you push code changes: building for production, uploading the built website, and finally deploying it to be accessible online.

hugo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
baseURL = "http://aaseper.dev/"
1+
baseURL = "https://aaseper.github.io/"
22
languageCode = "en-us"
33
title = "Alejandro Asensio Pérez"
44
description = "Excited to share my portfolio with you! Take a look around."
5-
copyright="© Copyright 2025 Alejandro Asensio Pérez."
5+
copyright="© Copyright 2026 Alejandro Asensio Pérez."
66
googleAnalytics = ""
77
enableEmoji=true
88
enableRobotsTXT=true
@@ -14,7 +14,7 @@ pygmentsCodeFences=true
1414
sub = "Full-Stack Developer"
1515

1616
[params.main]
17-
latestPublishHeader = "My latest uploaded project"
17+
latestFeaturedHeader = "My latest featured project"
1818

1919
[taxonomies]
2020
design = "designs"

layouts/index.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ <h1>{{ .Title | markdownify }}</h1>
88

99
{{ .Content }}
1010

11-
<h2>{{ .Site.Params.main.latestPublishHeader }}</h2>
12-
{{ $pages := where site.RegularPages "Type" "in" .Site.Params.mainSections }}
13-
{{ range first 1 $pages }}
11+
<h2>{{ .Site.Params.main.latestFeaturedHeader }}</h2>
12+
{{ $featured := where site.RegularPages "Params.featured" "==" true }}
13+
{{ range first 1 $featured }}
1414
{{ if in .Site.Params.mainSections "portfolio" }}
1515
{{ partial "portfolio/item" .}}
1616
{{ end }}

0 commit comments

Comments
 (0)