First post
This commit is contained in:
parent
5b768aa9d2
commit
184e120ef0
12
_cobalt.yml
12
_cobalt.yml
@ -1,10 +1,16 @@
|
||||
|
||||
source: "."
|
||||
destination: _site
|
||||
site:
|
||||
title: My Dev Blog
|
||||
description: My Dev Blog
|
||||
title: QRouland DevBlog
|
||||
description: QRouland DevBlog
|
||||
base_url: http://blog.qrouland.com
|
||||
posts:
|
||||
dir: "posts"
|
||||
rss: rss.xml
|
||||
drafts_dir: "drafts"
|
||||
default:
|
||||
# For simpler drafts
|
||||
layout: news.liquid
|
||||
assets:
|
||||
sass:
|
||||
style: Nested
|
||||
|
0
_includes/footer.liquid
Normal file
0
_includes/footer.liquid
Normal file
7
_includes/head.liquid
Normal file
7
_includes/head.liquid
Normal file
@ -0,0 +1,7 @@
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link
|
||||
rel="stylesheet"
|
||||
href="https://cdn.jsdelivr.net/npm/bulma@1.0.2/css/bulma.min.css"
|
||||
>
|
||||
<title>{{ page.title }}</title>
|
1
_includes/header.liquid
Normal file
1
_includes/header.liquid
Normal file
@ -0,0 +1 @@
|
||||
{% include "navbar.liquid" %}
|
44
_includes/navbar.liquid
Normal file
44
_includes/navbar.liquid
Normal file
@ -0,0 +1,44 @@
|
||||
<nav class="navbar" role="navigation" aria-label="main navigation">
|
||||
<div class="container">
|
||||
<div class="navbar-brand">
|
||||
<div class="navbar-item">
|
||||
<span class="title is-5" >{{ site.title }}</span>
|
||||
</div>
|
||||
|
||||
<a role="button" class="navbar-burger" aria-label="menu" aria-expanded="false" data-target="mynavbar">
|
||||
<span aria-hidden="true"></span>
|
||||
<span aria-hidden="true"></span>
|
||||
<span aria-hidden="true"></span>
|
||||
<span aria-hidden="true"></span>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<div id="mynavbar" class="navbar-menu">
|
||||
<div class="navbar-start">
|
||||
<a class="navbar-item" href="/">
|
||||
Home
|
||||
</a>
|
||||
<a class="navbar-item" href="/posts" >
|
||||
Posts
|
||||
</a>
|
||||
<!--a class="navbar-item" href="/news" >
|
||||
News
|
||||
</a-->
|
||||
<!--a class="navbar-item" href="/writeups">
|
||||
Write Up
|
||||
</a-->
|
||||
<!--a class="navbar-item" href="/cheatsheets">
|
||||
Cheat Sheet
|
||||
</a-->
|
||||
</div>
|
||||
<div class="navbar-end">
|
||||
<!--a class="navbar-item" href="https://qrouland.com">
|
||||
Personal Site
|
||||
</a-->
|
||||
<a class="navbar-item" href="/donate">
|
||||
Donate
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
@ -1,13 +1,18 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>{{ page.title }}</title>
|
||||
{% include "head.liquid" %}
|
||||
</head>
|
||||
<body>
|
||||
<div class="main">
|
||||
<h1 class="title">{{ page.title }}</p>
|
||||
<p>{{ page.content }}</p>
|
||||
</div>
|
||||
<header>
|
||||
{% include "header.liquid" %}
|
||||
</header>
|
||||
<div class="container mt-4">
|
||||
<!--h1 class="title">{{ page.title }}</p-->
|
||||
<div class="content m-5">{{ page.content }}</p>
|
||||
</div>
|
||||
<footer>
|
||||
{% include "footer.liquid" %}
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
||||
|
@ -0,0 +1 @@
|
||||
//@use "bulma/sass";
|
14
donate.md
Normal file
14
donate.md
Normal file
@ -0,0 +1,14 @@
|
||||
---
|
||||
title: Donate
|
||||
layout: default.liquid
|
||||
permalink: /donate
|
||||
---
|
||||
|
||||
## Donation
|
||||
|
||||
Like some of my content and/or projects ?
|
||||
|
||||
You can support and encourage it by buying me a coffee ;)
|
||||
|
||||
- Ko-fi : [ko-fi.com/qrouland](https://ko-fi.com/qrouland)
|
||||
- Bitcoin : [bc1qy00xqu90ncuyy6l3am5vxy7pv304de6evnfu46](bitcoin:bc1qy00xqu90ncuyy6l3am5vxy7pv304de6evnfu46)
|
0
drafts/.keep
Normal file
0
drafts/.keep
Normal file
11
index.md
11
index.md
@ -1,12 +1,11 @@
|
||||
---
|
||||
title: Home
|
||||
layout: default.liquid
|
||||
permalink: /
|
||||
---
|
||||
## Blog!
|
||||
|
||||
WIP !
|
||||
## Welcome to My Dev Blog!
|
||||
|
||||
{% for post in collections.posts.pages %}
|
||||
#### {{post.title}}
|
||||
This blog is dedicated to my software development activities, notes, and various related topics.
|
||||
|
||||
[{{ post.title }}]({{ post.permalink }})
|
||||
{% endfor %}
|
||||
I hope this can provide some useful insights! :)
|
||||
|
9
posts.md
Normal file
9
posts.md
Normal file
@ -0,0 +1,9 @@
|
||||
---
|
||||
title: Posts
|
||||
layout: default.liquid
|
||||
permalink: /posts
|
||||
---
|
||||
|
||||
{% for post in collections.posts.pages %}
|
||||
### [{{ post.published_date | date: "%Y-%m-%d" }} - {{ post.title }}](/{{ post.permalink }})
|
||||
{% endfor %}
|
14
posts/2025-01-14-news-1.md
Normal file
14
posts/2025-01-14-news-1.md
Normal file
@ -0,0 +1,14 @@
|
||||
---
|
||||
title: New Year, New Blog!
|
||||
categories:
|
||||
- News
|
||||
tags:
|
||||
- news
|
||||
published_date: 2025-01-14 19:34:58.99198587 +0000
|
||||
layout: default.liquid
|
||||
is_draft: false
|
||||
permalink: /posts/news/1
|
||||
---
|
||||
## ✨ New Year, New Blog! ✨
|
||||
|
||||
This year, I’m kicking things off by starting a dev blog. I’ve found so much value in reading other dev blogs, so I figured it’s time I contribute and hopefully help someone out along the way. From tutorials to project write-ups and random thoughts on coding, I’ll to my best to be sharing some interesting stuff ! 💻💡
|
@ -1,10 +0,0 @@
|
||||
---
|
||||
layout: default.liquid
|
||||
|
||||
title: First Post
|
||||
is_draft: true
|
||||
---
|
||||
|
||||
# This is our first Post!
|
||||
|
||||
Welcome to the first post ever on cobalt.rs!
|
8
yarn.lock
Normal file
8
yarn.lock
Normal file
@ -0,0 +1,8 @@
|
||||
# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
|
||||
# yarn lockfile v1
|
||||
|
||||
|
||||
bulma@^1.0.3:
|
||||
version "1.0.3"
|
||||
resolved "https://registry.yarnpkg.com/bulma/-/bulma-1.0.3.tgz#313c4fec8c356158a1d8f665586957a0991e2892"
|
||||
integrity sha512-9eVXBrXwlU337XUXBjIIq7i88A+tRbJYAjXQjT/21lwam+5tpvKF0R7dCesre9N+HV9c6pzCNEPKrtgvBBes2g==
|
Loading…
x
Reference in New Issue
Block a user