Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .bundle/config
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
---
BUNDLE_PATH: "vendor/bundle"
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@ _site/
.sass-cache/
.jekyll-cache/
.jekyll-metadata
vendor/
16 changes: 16 additions & 0 deletions _layouts/page.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<!DOCTYPE html>
<html lang="en">
{% include head.html %}
<body>
<main>
{% include header.html %}
<section class="article">
<div class="article-header">
<h2 class="article-title">{{page.title}}</h2>
</div>
<div class="content">{{content}}</div>
</section>
{% include footer.html %}
</main>
</body>
</html>
16 changes: 16 additions & 0 deletions about.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
---
title: About
layout: page
---

This is a sample page using the new page layout.

## Features

- Simple and clean design
- No date or categories
- Perfect for static pages like About, Contact, etc.

## Content

You can add any markdown content here and it will be rendered properly.
16 changes: 16 additions & 0 deletions contact.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
---
title: Contact
layout: page
---

## Get in Touch

Feel free to reach out if you have any questions or suggestions.

### Contact Information

- **Email:** contact@example.com
- **Twitter:** @example
- **GitHub:** github.com/example

This page demonstrates the flexibility of the new page layout.