layout title base Portfolio {% for project in site.data.projects %} {{ project.title }} {{ project.description }} View Project {% endfor %} Latest Blog Posts {% for post in site.posts limit:5 %} {{ post.title }} {{ post.date | date: "%b %-d, %Y" }} {% endfor %} View All Posts <style> .portfolio { display: flex; flex-wrap: wrap; justify-content: space-evenly; } .card { border: 1px solid #ddd; padding: 20px; width: 30%; margin-bottom: 20px; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); } </style>