From 8d9245af947e35374558a0d9eb3fbb2b891e3091 Mon Sep 17 00:00:00 2001 From: giteaadmin Date: Wed, 6 Aug 2025 22:47:13 -0400 Subject: [PATCH] populate data using json, formatting --- src/_data/certifications.json | 22 +++ src/_data/roles.json | 41 +++++ src/_data/services.json | 32 ++++ src/_data/skills.json | 18 +++ src/_includes/layout.njk | 114 +++++++------- src/_includes/post.njk | 8 +- src/css/style.css | 1 - src/index.md | 276 ++++++++++++++-------------------- 8 files changed, 285 insertions(+), 227 deletions(-) create mode 100644 src/_data/certifications.json create mode 100644 src/_data/roles.json create mode 100644 src/_data/services.json create mode 100644 src/_data/skills.json diff --git a/src/_data/certifications.json b/src/_data/certifications.json new file mode 100644 index 0000000..57e25ec --- /dev/null +++ b/src/_data/certifications.json @@ -0,0 +1,22 @@ +[ + { + "name": "JNCIA - DevOps", + "earned": "July 2025" + }, + { + "name": "JNCIS - Service Provider", + "earned": "June 2025" + }, + { + "name": "JNCIS - Enterprise", + "earned": "March 2025" + }, + { + "name": "JNCIA - Junos", + "earned": "May 2023" + }, + { + "name": "CCNA", + "earned": "April 2023" + } +] diff --git a/src/_data/roles.json b/src/_data/roles.json new file mode 100644 index 0000000..27ba5c3 --- /dev/null +++ b/src/_data/roles.json @@ -0,0 +1,41 @@ +[ + { + "title": "Service Activation Engineer", + "company": "Sparklight", + "time": "June 2024 - Present", + "featured": true, + "description": "Expertly activated new DIA, EPL, and CBH Ethernet services through design, deployment, and testing. Proactively identified and resolved network constraints to facilitate multi-gigabit services. Contributed to key company initiatives including billing migration and IP entanglement projects." + }, + { + "title": "Service Activation Technician III", + "company": "Cable One", + "featured": true, + "description": "Led the activation of complex Ethernet services, ensuring high standards of quality and performance. Collaborated with cross-functional teams to enhance service delivery processes and improve customer satisfaction.", + "time": "April 2023 - June 2024" + }, + { + "title": "Service Activation Technician II", + "company": "Cable One", + "featured": true, + "description": "Managed the activation of Ethernet services, focusing on efficiency and reliability. Played a key role in troubleshooting and resolving service issues to maintain high customer satisfaction.", + "time": "July 2020 - April 2023" + }, + { + "title": "Service Activation Technician I", + "company": "Hargray", + "featured": false, + "time": "May 2017 - July 2020" + }, + { + "title": "IT - Helpdesk Technician", + "company": "Hargray", + "featured": false, + "time": "February 2016 - May 2017" + }, + { + "title": "TAC Support Technician", + "company": "Hargray", + "featured": false, + "time": "May 2014 - February 2016" + } +] diff --git a/src/_data/services.json b/src/_data/services.json new file mode 100644 index 0000000..fb6420b --- /dev/null +++ b/src/_data/services.json @@ -0,0 +1,32 @@ +[ + { + "name": "Network Design & Architecture", + "icon": "fa-network-wired", + "description": "Custom network designs for scalability and performance, including LAN/WAN, VLAN/VPN, and Metro Ethernet solutions." + }, + { + "name": "Service Activation & Provisioning", + "icon": "fa-plug", + "description": "Expert activation for DIA, EPL, and CBH Ethernet services. End-to-end project management from design to deployment." + }, + { + "name": "Troubleshooting & Root Cause Analysis", + "icon": "fa-tools", + "description": "Proactive identification and resolution of network constraints and issues to ensure optimal performance and reliability." + }, + { + "name": "Automation & Scripting", + "icon": "fa-code", + "description": "Developing automation solutions using Python, Ansible, and Jinja to streamline network operations and reduce manual errors." + }, + { + "name": "Homelabbing & Self-Hosting", + "icon": "fa-server", + "description": "Consultation on server hardware, web hosting, hypervisors (like Proxmox/ESXi), Docker, and storage arrays (NAS/SAN)." + }, + { + "name": "Technical Training", + "icon": "fa-chalkboard-teacher", + "description": "Providing cross-departmental training on network technologies, protocols, and best practices." + } +] diff --git a/src/_data/skills.json b/src/_data/skills.json new file mode 100644 index 0000000..ff8343e --- /dev/null +++ b/src/_data/skills.json @@ -0,0 +1,18 @@ +[ + { + "name": "Networking", + "keywords": "Design, Addressing, VLAN/VPN, Metro Ethernet, FTTX, Fixed Wireless" + }, + { + "name": "Protocols & Technologies", + "keywords": "NFS, SMB, FTP, DHCP, OSPF, IS-IS, BGP, MPLS, STP, G.8032, 802.1ad, SIP/VOIP" + }, + { + "name": "Systems & Software", + "keywords": "Linux, macOS, MS Windows, Excel, Visio, SharePoint, OPNSense, DD-WRT" + }, + { + "name": "Vendors & Platforms", + "keywords": "Juniper, Accedian, Adtran, Calix, Ciena, Cisco, Incognito, Alcatel-Lucent" + } +] diff --git a/src/_includes/layout.njk b/src/_includes/layout.njk index c9444e9..391863c 100644 --- a/src/_includes/layout.njk +++ b/src/_includes/layout.njk @@ -1,60 +1,60 @@ - - - - {{ title }} - - - - - - - - - -
- - - -
-
- {{ content | safe }} -
- - - - + + + + {{ title }} + + + + + + + + + +
+ + + +
+
+ {{ content | safe }} +
+ + + + \ No newline at end of file diff --git a/src/_includes/post.njk b/src/_includes/post.njk index b51cbea..d17072d 100644 --- a/src/_includes/post.njk +++ b/src/_includes/post.njk @@ -2,8 +2,8 @@ layout: "layout.njk" ---
-

{{ title }}

-

Published on: {{ date | readableDate }}

-
- {{ content | safe }} +

{{ title }}

+

Published on: {{ date | readableDate }}

+
+ {{ content | safe }}
\ No newline at end of file diff --git a/src/css/style.css b/src/css/style.css index 6aeb89d..ac16e87 100644 --- a/src/css/style.css +++ b/src/css/style.css @@ -15,7 +15,6 @@ body { transition: transform 0.3s ease, box-shadow 0.3s ease; } .card:hover { - transform: translateY(-5px); box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); } .tag { diff --git a/src/index.md b/src/index.md index 19f8054..c7cf875 100644 --- a/src/index.md +++ b/src/index.md @@ -2,190 +2,136 @@ title: "Jesus - Network Engineer" layout: "layout.njk" --- -
-

Senior Network Engineer

-

-

10+ years of experience in designing, deploying, and troubleshooting robust network solutions. Let's build a reliable and efficient network for your business.

- +

Senior Network Engineer

+

+

10+ years of experience in troubleshooting, designing, and deploying robust network solutions. Let's build a reliable and efficient network for your business.

+
-

About Me

-
-
- Jesus Otero Lagunes +

About Me

+
+
+ Jesus Otero Lagunes +
+
+

+ I am a highly motivated and adaptable telecommunications engineer with a proven ability to troubleshoot and resolve complex network issues. I am passionate about all things computer networking and thrive in challenging environments where continuous learning and meaningful contributions are valued. +

+

+ My goal is to leverage my decade of experience to help businesses optimize their network infrastructure, ensuring high availability, security, and performance. I believe in a healthy work-life balance, which allows me to stay sharp and bring my best to every project. +

+
-
-

- I am a highly motivated and adaptable telecommunications engineer with a proven ability to troubleshoot and resolve complex network issues. I am passionate about all things computer networking and thrive in challenging environments where continuous learning and meaningful contributions are valued. -

-

- My goal is to leverage my decade of experience to help businesses optimize their network infrastructure, ensuring high availability, security, and performance. I believe in a healthy work-life balance, which allows me to stay sharp and bring my best to every project. -

-
-
-

Consultation Services

-
-
- -

Network Design & Architecture

-

Custom network designs for scalability and performance, including LAN/WAN, VLAN/VPN, and Metro Ethernet solutions.

+

Consultation Services

+
+ {%- for service in services -%} +
+ +

{{ service.name }}

+

{{ service.description }}

+
+ {%- endfor -%}
-
- -

Service Activation & Provisioning

-

Expert activation for DIA, EPL, and CBH Ethernet services. End-to-end project management from design to deployment.

-
-
- -

Troubleshooting & Root Cause Analysis

-

Proactive identification and resolution of network constraints and issues to ensure optimal performance and reliability.

-
-
- -

Automation & Scripting

-

Developing automation solutions using Python, Ansible, and Jinja to streamline network operations and reduce manual errors.

-
-
- -

Homelabbing & Self-Hosting

-

Consultation on server hardware, web hosting, hypervisors (like Proxmox/ESXi), Docker, and storage arrays (NAS/SAN).

-
-
- -

Technical Training

-

Providing cross-departmental training on network technologies, protocols, and best practices.

-
-
-

Skills & Certifications

-
- -
-

Technical Skills

-
-

Networking

-

Design, Addressing, VLAN/VPN, Metro Ethernet, FTTX, Fixed Wireless

-

Protocols & Technologies

-

NFS, SMB, FTP, DHCP, OSPF, IS-IS, BGP, MPLS, STP, G.8032, 802.1ad, SIP/VOIP

-

Systems & Software

-

Linux, macOS, MS Windows, Excel, Visio, SharePoint, OPNSense, DD-WRT

-

Vendors & Platforms

-

Juniper, Accedian, Adtran, Calix, Ciena, Cisco, Incognito, Alcatel-Lucent

-
+

Skills & Certifications

+
+ +
+

Technical Skills

+
+ {% for skill in skills %} +

{{ skill.name }}

+

{{ skill.keywords }}

+ {%- endfor -%} +
+
+ +
+

Certifications

+
+ {%- for certification in certifications -%} +
+ +
+

{{ certification.name}}

+

Earned: {{ certification.earned}}

+
+
+ {%- endfor -%} +
+
- -
-

Certifications

-
-
- -
-

JNCIA - DevOps

-

July 2025

-
-
-
- -
-

JNCIS - Service Provider

-

June 2025

-
-
-
- -
-

JNCIS - Enterprise

-

March 2025

-
-
-
- -
-

CCNA

-

April 2026

-
-
-
-
-
-

Work Experience

-
- -
- - - -
-

Service Activation Engineer (Sparklight / Hargray)

- -

Expertly activated new DIA, EPL, and CBH Ethernet services through design, deployment, and testing. Proactively identified and resolved network constraints to facilitate multi-gigabit services. Contributed to key company initiatives including billing migration and IP entanglement projects.

-
+

Work Experience

+
+ {# Loop through and display all "featured" roles #} + {% for role in roles %} + {% if role.featured %} +
+ + + +
+

+ {{ role.title }} + {% if role.company %} + + @ {{ role.company }} + + {% endif %} +

+ + {% if role.description %} +

{{ role.description }}

+ {% endif %} +
+
+ {% endif %} + {% endfor %} +
+ + + +
+

Previous Roles

+ +
    + {% for role in roles %} + {% if not role.featured %} +
  • {{ role.title }}
  • + {% endif %} + {% endfor %} +
+
+
- -
- - - -
-

Service Activation Technician III

- -
-
- -
- - - -
-

Service Activation Technician II

- -
-
- -
- - - -
-

Previous Roles

- -
    -
  • Service Activation Technician
  • -
  • IT - Helpdesk Analyst
  • -
  • TAC Support Technician
  • -
-
-
-
-
-

Get In Touch

-

I'm always open to discussing new projects, creative ideas, or opportunities to be part of an ambitious vision.

-
-
- - -
- -
- -
-
-
+
+

Get In Touch

+

I'm always open to discussing new projects, creative ideas, or opportunities to be part of an ambitious vision.

+
+
+ + +
+ +
+ +
+
+
\ No newline at end of file