feat: Set up Eleventy and restructure project

Install and configure Eleventy for static site generation.

- Reorganized project directories for Eleventy conventions.
- Created base.njk, header.html, and footer.html for modularity.
- Wrote the initial landing page content in index.njk.
This commit is contained in:
2025-08-12 22:45:47 -05:00
parent fde00ef1b1
commit ef6363b3bd
16 changed files with 1895 additions and 32 deletions

17
src/includes/footer.html Normal file
View File

@@ -0,0 +1,17 @@
<footer>
<ul class="footer-links">
<li><a href="#home">Back to Top</a></li>
<li><a href="#about">About</a></li>
<li><a href="#portfolio">Portfolio</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
<ul class="external-links">
<li><a href="https://linkedin.com/in/dereklseitz" target="_blank">Connect on LinkedIn</a></li>
<li><a href="https://git.dsnet.pro/dereklseitz" target="_blank">My Project Repos</a></li>
</ul>
<p>&copy; 2025, Derek L.Seitz</p>
</footer>