-
-
Notifications
You must be signed in to change notification settings - Fork 99
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert "Breaking theme to test workflow"
This reverts commit 007b8f0.
- Loading branch information
Showing
2 changed files
with
302 additions
and
0 deletions.
There are no files selected for viewing
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,115 @@ | ||
## Looking for strings? Check the i18n folder. | ||
|
||
# showcase | ||
showcase: | ||
enable: true | ||
image: | ||
x: "images/showcase/showcase.png" | ||
_2x: "images/showcase/showcase@2x.png" | ||
imageMobile: | ||
x: "images/showcase/showcase-mobile.jpg" | ||
|
||
button: | ||
icon: "icon-email" | ||
URL: "https://www.adrianmoreno.info/" | ||
|
||
socialLinks: | ||
- icon: "linkedin" | ||
URL: "https://www.linkedin.com/in/adrianmoreno/" | ||
|
||
- icon: "square-github" | ||
URL: "https://github.com/zetxek" | ||
|
||
- icon: "x-twitter" | ||
URL: "https://twitter.com/zetxek" | ||
|
||
- icon: "dribbble" | ||
URL: "#" | ||
|
||
- icon: "behance" | ||
URL: "#" | ||
|
||
- icon: "youtube" | ||
URL: "#" | ||
|
||
- icon: "instagram" | ||
URL: "https://www.instagram.com/zetxek/" | ||
|
||
- icon: "square-facebook" | ||
URL: "https://www.facebook.com/zetxek/" | ||
|
||
- icon: "codepen" | ||
URL: "#" | ||
|
||
- icon: "yelp" | ||
URL: "https://www.yelp.com/" | ||
|
||
- icon: "bluesky" | ||
URL: "https://www.bluesky.com/" | ||
|
||
- icon: "threads" | ||
URL: "https://www.threads.net/" | ||
|
||
- icon: "face-smile" | ||
URL: "https://www.adrianmoreno.info/" | ||
|
||
- icon: "user" | ||
URL: "https://www.adrianmoreno.info/" | ||
|
||
- icon: "quote" | ||
URL: "https://www.adrianmoreno.info/" | ||
|
||
- icon: "cloud-arrow-down" | ||
URL: "https://www.adrianmoreno.info/" | ||
# about | ||
about: | ||
enable: true | ||
button: | ||
icon: "icon-user" | ||
URL: "https://www.linkedin.com/in/adrianmoreno/" | ||
image: | ||
x: "images/about/user-picture.png" | ||
_2x: "images/about/user-picture@2x.png" | ||
|
||
# education | ||
education: | ||
enable: true | ||
items: | ||
- university: "University of Life" | ||
year: "2012-2017" | ||
degree: "Bachelor of Applied Science (BASc), Electrical Engineering" | ||
|
||
- university: "High School of Hard Knocks" | ||
year: "2009-2012" | ||
degree: "High School Diploma, Sciences, Math, Computer & Business Studies" | ||
|
||
# experience | ||
## to hiden a button, set the icon to an empty string | ||
experience: | ||
enable: true | ||
button: | ||
icon: "icon-linkedin" | ||
button2: | ||
icon: "icon-file-pdf" | ||
button3: | ||
icon: "icon-cloud-arrow-down" | ||
|
||
# Client & Work | ||
client_and_work: | ||
enable: true | ||
|
||
# testimonial | ||
testimonial: | ||
enable: true | ||
|
||
# contact | ||
contact: | ||
enable: true | ||
form: | ||
action: "#" | ||
button: | ||
icon: "icon-email" | ||
|
||
# newsletter | ||
newsletter: | ||
enable: true |
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,187 @@ | ||
baseURL = "https://www.adrianmoreno.info" | ||
languageCode = "en" | ||
theme = "adritian-free-hugo-theme" | ||
|
||
[languages] | ||
[languages.en] | ||
disabled = false | ||
languageCode = 'en' | ||
languageDirection = 'ltr' | ||
languageName = 'English' | ||
title = '' | ||
weight = 0 | ||
|
||
[languages.en.menus] | ||
[[languages.en.menus.header]] | ||
name = 'About' | ||
URL = '#about' | ||
weight = 2 | ||
[[languages.en.menus.header]] | ||
name = 'Portfolio' | ||
URL = '#portfolio' | ||
weight = 3 | ||
# [[languages.en.menus.header]] | ||
# name = "Experience" | ||
# URL = "#experience" | ||
# weight = 4 | ||
|
||
[[languages.en.menus.header]] | ||
name = "Blog" | ||
URL = "/blog" | ||
weight = 5 | ||
|
||
[[languages.en.menus.header]] | ||
name = "Contact" | ||
URL = "#contact" | ||
weight = 6 | ||
|
||
[[languages.en.menus.footer]] | ||
name = "About" | ||
URL = "#about" | ||
weight = 2 | ||
|
||
[[languages.en.menus.footer]] | ||
name = "Portfolio" | ||
URL = "#portfolio" | ||
weight = 3 | ||
|
||
[[languages.en.menus.footer]] | ||
name = "Contact" | ||
URL = "#contact" | ||
weight = 4 | ||
|
||
|
||
[languages.es] | ||
disabled = false | ||
languageCode = 'es' | ||
languageDirection = 'ltr' | ||
languageName = 'Español' | ||
title = '' | ||
weight = 0 | ||
[[languages.es.menus.header]] | ||
name = 'Sobre mi' | ||
URL = '/es/#about' | ||
weight = 2 | ||
[[languages.es.menus.header]] | ||
name = 'Portfolio' | ||
URL = '/es/#portfolio' | ||
weight = 3 | ||
|
||
# [[languages.es.menus.header]] | ||
# name = "Experiencia" | ||
# URL = "/es/#experience" | ||
# weight = 4 | ||
|
||
[[languages.es.menus.header]] | ||
name = "Blog" | ||
URL = "/es/blog" | ||
weight = 5 | ||
|
||
[[languages.es.menus.header]] | ||
name = "Contacto" | ||
URL = "/es/#contact" | ||
weight = 6 | ||
|
||
[[languages.es.menus.footer]] | ||
name = "Sobre mi" | ||
URL = "/es/#about" | ||
weight = 2 | ||
|
||
[[languages.es.menus.footer]] | ||
name = "Portfolio" | ||
URL = "/es/#portfolio" | ||
weight = 3 | ||
|
||
[[languages.es.menus.footer]] | ||
name = "Contact" | ||
URL = "/es/#contact" | ||
weight = 4 | ||
|
||
[languages.fr] | ||
disabled = false | ||
languageCode = 'fr' | ||
languageDirection = 'ltr' | ||
languageName = 'Français' | ||
title = '' | ||
weight = 0 | ||
|
||
[languages.fr.menus] | ||
[[languages.fr.menus.header]] | ||
name = 'About' | ||
URL = '#about' | ||
weight = 2 | ||
[[languages.fr.menus.header]] | ||
name = 'Portfolio' | ||
URL = '#portfolio' | ||
weight = 3 | ||
# [[languages.fr.menus.header]] | ||
# name = "Experience" | ||
# URL = "#experience" | ||
# weight = 4 | ||
|
||
[[languages.fr.menus.header]] | ||
name = "Blog" | ||
URL = "/blog" | ||
weight = 5 | ||
|
||
[[languages.fr.menus.header]] | ||
name = "Contact" | ||
URL = "#contact" | ||
weight = 6 | ||
|
||
[[languages.fr.menus.footer]] | ||
name = "About" | ||
URL = "#about" | ||
weight = 2 | ||
|
||
[[languages.fr.menus.footer]] | ||
name = "Portfolio" | ||
URL = "#portfolio" | ||
weight = 3 | ||
|
||
[[languages.fr.menus.footer]] | ||
name = "Contact" | ||
URL = "#contact" | ||
weight = 4 | ||
|
||
|
||
|
||
# Plugins | ||
[params.plugins] | ||
|
||
# CSS Plugins | ||
[[params.plugins.css]] | ||
URL = "css/main.css" | ||
[[params.plugins.css]] | ||
URL = "css/adritian-icons.css" | ||
[[params.plugins.css]] | ||
URL = "css/custom.css" | ||
|
||
# JS Plugins | ||
[[params.plugins.js]] | ||
URL = "js/rad-animations.js" | ||
[[params.plugins.js]] | ||
URL = "js/sticky-header.js" | ||
[[params.plugins.js]] | ||
URL = "js/library/fontfaceobserver.js" | ||
|
||
# SCSS Plugins | ||
[[params.plugins.scss]] | ||
URL = "css/menu.scss" | ||
|
||
[params] | ||
|
||
sections = ["showcase", "about", "education", "experience", "client-and-work", "testimonial", "contact", "newsletter"] | ||
|
||
homepageExperienceCount = 6 | ||
|
||
# controls vercel page insights - disabled by default | ||
vercelPageInsights = false | ||
vercelAnalytics = false | ||
|
||
[params.google_analytics] | ||
code = "UA-XXXXX-Y" | ||
enabled = false | ||
[params.google_tag_manager] | ||
code = "GTM-XXXXX" | ||
enabled = false |