Skip to content

Commit

Permalink
Merge pull request #51 from bartczak-pa/feature/header
Browse files Browse the repository at this point in the history
Moved header to separate template
  • Loading branch information
bartczak-pa authored Sep 4, 2024
2 parents 8cd665e + 5dd38f9 commit c2c43c3
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 20 deletions.
17 changes: 17 additions & 0 deletions bartczak_tech/templates/portfolio/header.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<section id="home" class="full-height px-lg-5">
<div class="container">
<div class="row">
<div class="col-lg-10">
<h1 class="display-4 fw-bold" data-aos="fade-up">
I'M A <span class="text-brand">BEGINNING SOFTWARE DEVELOPER</span> AND PASSIONATE PHOTOGRAPHER
</h1>
<p class="lead mt-2 mb-4" data-aos="fade-up" data-aos-delay="300">
I am Pawel Bartczak and this page shows my passions and work
</p>
<div data-aos="fade-up" data-aos-delay="600">
<a href="#projects" class="btn btn-brand me-3">Explore My Projects</a>
</div>
</div>
</div>
</div>
</section>
25 changes: 5 additions & 20 deletions bartczak_tech/templates/portfolio/portfolio.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,29 +4,14 @@

{% block body %}
<body data-bs-spy="scroll" data-bs-target=".navbar">
<!-- CONTENT WRAPPER -->
<div id="content-wrapper">
<!-- HOME -->
<section id="home" class="full-height px-lg-5">
<div class="container">
<div class="row">
<div class="col-lg-10">
<h1 class="display-4 fw-bold" data-aos="fade-up">
I'M A <span class="text-brand">BEGINNING SOFTWARE DEVELOPER</span> AND PASSIONATE PHOTOGRAPHER
</h1>
<p class="lead mt-2 mb-4" data-aos="fade-up" data-aos-delay="300">
I am Pawel Bartczak and this page shows my passions and work
</p>
<div data-aos="fade-up" data-aos-delay="600">
<a href="#work" class="btn btn-brand me-3">Explore My Work</a>
</div>
</div>
</div>
</div>
</section>
{% include 'portfolio/header.html' %}
{% include 'portfolio/hobbies.html' with hobbies=hobbies_list %}
{% include 'portfolio/projects.html' with projects=projects_list %}
<!-- TODO: Include blog when completed -->
{% comment %}
Blog section will be included here when completed.
Tracked in issue #XX on project management tool.
{% endcomment %}
<!-- TODO: Include contact when completed -->
{% include 'portfolio/footer.html' %}
</div>
Expand Down

0 comments on commit c2c43c3

Please sign in to comment.