Your modern, professional personal website is now ready! Built with Jekyll and the Minimal Mistakes theme, featuring a professional dark theme with deep blue and orange accent colors.
/)index.html/academics/)academics.md/projects/)projects.md/contact/)contact.md_data/navigation.ymlFile: _config.yml
Find the βSite Authorβ section and update:
author:
name : "Didier Barradas Bautista"
email : "your.email@example.com" # β Update this
links:
- label: "Email"
url: "mailto:your.email@example.com" # β Update this
- label: "Twitter"
url: "https://twitter.com/dxbarradas" # β Update this
- label: "GitHub"
url: "https://github.com/yourusername" # β Update this
- label: "LinkedIn"
url: "https://linkedin.com/in/yourusername" # β Update this
File: index.html (Featured Projects section) or projects.md (Full projects page)
Replace placeholders:
<!-- Before -->
<h3 class="project-title">Project Title 1</h3>
<p class="project-description">
[Add your project description here...]
</p>
<!-- After -->
<h3 class="project-title">Advanced Neural Network Classification</h3>
<p class="project-description">
Developed a deep learning model achieving 95% accuracy on image classification.
Implemented using TensorFlow and deployed on AWS for production use.
</p>
File: index.html - Skills & Technologies section
Replace the [Add Skill] placeholders:
<!-- Before -->
<div class="skill-item placeholder">
<div class="skill-icon">?</div>
<div class="skill-name">[Add Skill]</div>
<div class="skill-level">Placeholder</div>
</div>
<!-- After -->
<div class="skill-item">
<div class="skill-icon">π§ </div>
<div class="skill-name">XGBoost</div>
<div class="skill-level">Advanced</div>
</div>
File: academics.md
Fill in your education and certifications:
<h3 style="color: var(--primary-blue); font-size: 1.2rem; margin-bottom: 8px;">[Degree Name]</h3>
<p style="color: var(--accent-orange); font-weight: 700; margin-bottom: 8px;">[University Name]</p>
<p style="color: #666; margin-bottom: 10px;">π
[Year Graduated]</p>
<p style="color: #555; line-height: 1.6;">
[Add degree details, major/minor, GPA, relevant coursework, thesis title, or honors received]
</p>
File: contact.md
Update your contact methods:
<a href="mailto:your.email@example.com" style="...">
your.email@example.com
</a>
The website uses a professional color palette you specified:
#003366 - Headers, text, borders#001a33 - Darkest elements#004d99 - Highlights#ff8c00 - Call-to-action buttons, icons#ffa500 - Hover states#ffffff - Backgrounds#f5f5f5 - Alternate sectionsAll CSS variables are defined in: assets/css/custom.css
File: assets/css/custom.css (Lines 1-13)
:root {
--primary-blue: #003366; /* Change this */
--dark-blue: #001a33; /* Change this */
--light-blue: #004d99; /* Change this */
--accent-orange: #ff8c00; /* Change this */
--light-orange: #ffa500; /* Change this */
/* ... rest of colors ... */
}
All custom styles are in: assets/css/custom.css
Common sections to customize:
.hero-section - Homepage hero section.project-card - Project cards.achievement-card - Achievement cards.btn-cta - Call-to-action buttons.section-title - Section headingsFile: _config.yml
author:
avatar: /assets/images/profile-photo.jpg # Add your image path here
Then place your image in: assets/images/profile-photo.jpg
File: index.html - Stats Section
Update the numbers in the stats container:
<div class="stat-box">
<div class="stat-number">50+</div> <!-- Update this -->
<div class="stat-label">Students Trained</div>
</div>
The website is fully responsive! It automatically adapts to:
No additional configuration needed. All components stack properly on smaller screens.
https://yourusername.github.io/personal_wp/# Install dependencies (first time only)
bundle install
# Serve locally
bundle exec jekyll serve
# Visit: http://localhost:4000
_config.yml/projects//academics//contact/index.html)personal_wp/
βββ index.html β Homepage
βββ academics.md β Academic Achievements
βββ projects.md β Projects Showcase
βββ contact.md β Contact Page
βββ _config.yml β Site configuration
βββ assets/
β βββ css/
β βββ custom.css β Your custom styles (deep blue + orange)
βββ _data/
β βββ navigation.yml β Navigation menu
βββ _includes/
βββ head.html β Links custom CSS
/ for internal linksassets/css/custom.css is being loadedbundle exec jekyll serve locally firstYour professional portfolio website is ready to showcase your work!
Next Steps:
Good luck! π
Questions or need help? Reach out and customize away! This is your professional space to shine.