Skip to content

Update jekyll-gh-pages.yml #3

Update jekyll-gh-pages.yml

Update jekyll-gh-pages.yml #3

<!DOCTYPE html>

Check failure on line 1 in .github/workflows/jekyll-gh-pages.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/jekyll-gh-pages.yml

Invalid workflow file

You have an error in your yaml syntax on line 1
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{{ page.title }}</title>
<link rel="stylesheet" href="/assets/css/style.css">
</head>
<body>
<!-- Header Section -->
<header>
<div class="container">
<h1>{{ site.title }}</h1>
<h2>{{ site.description }}</h2>
<nav>
<ul>
{% for item in site.navigation %}
<li><a href="{{ item.link }}">{{ item.name }}</a></li>
{% endfor %}
</ul>
</nav>
</div>
</header>
<!-- Main Content Section -->
<main>
<div class="container">
{{ content }}
</div>
</main>
<!-- Footer Section -->
<footer>
<div class="container">
<p>&copy; {{ site.author.name }} - {{ site.author.email }}</p>
<p>"A journey of a thousand miles begins with a single step" - Lao Tzu</p>
</div>
</footer>
</body>
</html>