Skip to content

Commit

Permalink
Initial site
Browse files Browse the repository at this point in the history
  • Loading branch information
attipaci committed Sep 3, 2024
1 parent 146aced commit 4f48174
Show file tree
Hide file tree
Showing 181 changed files with 22,589 additions and 0 deletions.
7 changes: 7 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# frozen_string_literal: true

source "https://rubygems.org"
gem 'jekyll-sitemap'
gem 'jekyll-titles-from-headings'

# gem "rails"
24 changes: 24 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
This is free and unencumbered software released into the public domain.

Anyone is free to copy, modify, publish, use, compile, sell, or
distribute this software, either in source code form or as a compiled
binary, for any purpose, commercial or non-commercial, and by any
means.

In jurisdictions that recognize copyright laws, the author or authors
of this software dedicate any and all copyright interest in the
software to the public domain. We make this dedication for the benefit
of the public at large and to the detriment of our heirs and
successors. We intend this dedication to be an overt act of
relinquishment in perpetuity of all present and future rights to this
software under copyright law.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.

For more information, please refer to <https://unlicense.org>
27 changes: 27 additions & 0 deletions _config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
theme: jekyll-theme-Tactile
author: Attila Kovacs
github_username: attipaci
title: RedisX
description: A light-weight Redis client library for C/C++
show_downloads: false
#google_analytics: G-D69CXTY2CJ
url: "https://smithsonian.github.io"
read_time: true
titles_from_headings:
strip_title: true
plugins:
- jekyll-sitemap
- jekyll-titles-from-headings
- jekyll-toc
defaults:
# Exclude search pages from sitemap
- scope:
path: apidoc/html/search/**
values:
sitemap: false
# Exclude google site verification from sitemap
- scope:
path: google*.html
values:
sitemap: false

11 changes: 11 additions & 0 deletions _includes/head-custom-google-analytics.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@

{% if site.google_analytics %}
<script async src="https://www.googletagmanager.com/gtag/js?id={{ site.google_analytics }}"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());

gtag('config', '{{ site.google_analytics }}');
</script>
{% endif %}
16 changes: 16 additions & 0 deletions _includes/head-custom.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<!-- start custom head snippets, customize with your own _includes/head-custom.html file -->
<meta name="keywords" content="Redis client library, C, C++, C90, open-source software"/>
<meta name="author" content="Attila Kovacs"/>
<meta name="copyright" content="(C)2024 Attila Kovacs" />
<meta name="robots" content="index,follow"/>

<!-- Setup Google Analytics -->
{% include head-custom-google-analytics.html %}

<!-- You can set your favicon here -->
<link rel="shortcut icon" type="image/x-icon" href="/redisx/resources/favicon.ico">
<link rel="icon" type="image/png" sizes="192x192" href="/redisx/resources/android-chrome-192x192.png">
<link rel="icon" type="image/png" sizes="512x512" href="/redisx/resources/android-chrome-512x512.png">
<link rel="apple-touch-icon" type="image/x-icon" href="/redisx/resources/apple-touch-icon.png">

<!-- end custom head snippets -->
1 change: 1 addition & 0 deletions _includes/site.webmanifest
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"name":"","short_name":"","icons":[{"src":"/SuperNOVAS.home/android-chrome-192x192.png","sizes":"192x192","type":"image/png"},{"src":"/SuperNOVAS.home/android-chrome-512x512.png","sizes":"512x512","type":"image/png"}],"theme_color":"#ffffff","background_color":"#ffffff","display":"standalone"}
Loading

0 comments on commit 4f48174

Please sign in to comment.