-
-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Lars-Erik Roald
committed
Sep 2, 2023
1 parent
6d8dbc1
commit da3b9c5
Showing
4 changed files
with
73 additions
and
7 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 |
---|---|---|
@@ -1,4 +1,32 @@ | ||
markdown: GFM | ||
# remote_theme: pages-themes/primer | ||
# Site settings | ||
title: RDB | ||
email: [email protected] | ||
description: The ultimate ORM for Node & Typescript | ||
#baseurl: "" # e.g., "/blog" if your site is at "yourdomain.com/blog" | ||
url: "https://rdbjs.org" # The base hostname & protocol for your site | ||
|
||
# Social links (you can add or remove these as needed) | ||
twitter_username: lroal | ||
github_username: lroal | ||
|
||
# Build settings | ||
markdown: kramdown | ||
kramdown: | ||
input: GFM | ||
|
||
# Theme (if you're using one) | ||
#theme: minima # Example theme - you might be using a different one | ||
|
||
# Plugins | ||
plugins: | ||
- jekyll-seo-tag | ||
- jekyll-feed # Example plugin | ||
|
||
# Exclusions | ||
exclude: | ||
- Gemfile | ||
- Gemfile.lock | ||
- node_modules | ||
- vendor | ||
|
||
# Additional configurations might go here... | ||
|
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,39 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="utf-8"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
|
||
<!-- SEO Meta Tags --> | ||
<meta name="description" content="RDB - the ultimate ORM for Node & Typescript"> | ||
<meta property="og:title" content="RDB"> | ||
<!-- <meta property="og:description" content="A brief description of your site."> --> | ||
<!-- <meta property="og:image" content="URL-to-your-image.jpg"> --> | ||
|
||
<title>{{ page.title | default: site.title }}</title> | ||
|
||
<!-- Styles and Favicon --> | ||
<link rel="stylesheet" href="/path/to/your/styles.css"> | ||
<link rel="icon" href="/path/to/favicon.ico" type="image/x-icon"> | ||
</head> | ||
|
||
<body> | ||
<header> | ||
<!-- Your header content here --> | ||
</header> | ||
|
||
<main> | ||
{{ content }} | ||
</main> | ||
|
||
<footer> | ||
<!-- Your footer content here --> | ||
</footer> | ||
|
||
<!-- Optional JavaScript --> | ||
<!-- You can include jQuery or other libraries here if needed --> | ||
</body> | ||
|
||
</html> |
This file was deleted.
Oops, something went wrong.