Started building a Website with Jekyll based on Uno-Timeline
This commit is contained in:
commit
2d9e9fb878
103 changed files with 6371 additions and 0 deletions
21
_projects/arts.md
Normal file
21
_projects/arts.md
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
---
|
||||
title: "Cats Project"
|
||||
layout: default
|
||||
---
|
||||
# 🚀 Project Nebula
|
||||
|
||||
Welcome to **Project Nebula**, a cosmic initiative to explore the outer edges of creativity.
|
||||
|
||||
## 🌌 Features
|
||||
|
||||
- 🌠 Star-mapped navigation
|
||||
- 🛰️ Real-time telemetry
|
||||
- 🧠 Bullshit-assisted decision engine
|
||||
|
||||
## 📦 Installation
|
||||
|
||||
```bash
|
||||
git clone https://github.com/yourusername/project-nebula.git
|
||||
cd project-nebula
|
||||
npm install
|
||||
```
|
||||
19
_projects/gallery.html
Normal file
19
_projects/gallery.html
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
---
|
||||
layout: default
|
||||
slug: gallery
|
||||
---
|
||||
|
||||
<ul class="gallery-list">
|
||||
{% for item in site.data.gallery %}
|
||||
<li class="gallery-item">
|
||||
<a href="{{ item.image }}" data-lightbox="gallery">
|
||||
<img src="{{ item.image }}" alt="{{ item.title }}">
|
||||
</a>
|
||||
<div class="info">
|
||||
<h3>{{ item.title }}</h3>
|
||||
<p>{{ item.year }}</p>
|
||||
</div>
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue