-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Jekyll theme to README file (#85)
--- For more details, open the [Copilot Workspace session](https://copilot-workspace.githubnext.com/x0lg0n/Code-Contribution?shareId=70ffba5d-4da3-44cc-8590-f5b77047acc1). ## Summary by Sourcery Add a Jekyll theme to the repository and update the README with instructions for local setup and site generation. New Features: - Introduce a Jekyll theme to the repository, enabling local site generation and customization. Documentation: - Add instructions to the README file for setting up and running the Jekyll site locally.
- Loading branch information
Showing
5 changed files
with
73 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
theme: minima | ||
title: Code Contribution | ||
description: A repository for code contributions in various languages. | ||
baseurl: "/Code-Contribution" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
<footer> | ||
<p>© {{ site.time | date: '%Y' }} Code Contribution. All rights reserved.</p> | ||
</footer> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<header> | ||
<nav> | ||
<ul> | ||
<li><a href="{{ site.baseurl }}/">Home</a></li> | ||
<li><a href="{{ site.baseurl }}/about">About</a></li> | ||
<li><a href="{{ site.baseurl }}/contact">Contact</a></li> | ||
</ul> | ||
</nav> | ||
</header> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>{{ page.title }}</title> | ||
</head> | ||
<body> | ||
<header> | ||
{% include header.html %} | ||
</header> | ||
<main> | ||
{{ content }} | ||
</main> | ||
<footer> | ||
{% include footer.html %} | ||
</footer> | ||
</body> | ||
</html> |