Skip to content

Commit

Permalink
kramdown
Browse files Browse the repository at this point in the history
  • Loading branch information
Lars-Erik Roald committed Sep 2, 2023
1 parent 6d8dbc1 commit da3b9c5
Show file tree
Hide file tree
Showing 4 changed files with 73 additions and 7 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
---
layout: default
---
![RDB](./docs/logo-sm.jpg)
RDB is the ultimate Object Relational Mapper for Node.js, offering seamless integration with popular databases like Postgres, MS SQL, MySQL, Sybase SAP, and SQLite. Whether you're building applications in TypeScript or JavaScript (including both CommonJS and ECMAScript), RDB has got you covered.

Expand Down
34 changes: 31 additions & 3 deletions _config.yml
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...

39 changes: 39 additions & 0 deletions _layouts/default.html
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>
4 changes: 0 additions & 4 deletions index.html

This file was deleted.

0 comments on commit da3b9c5

Please sign in to comment.