diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 00000000..5fe1ce23 --- /dev/null +++ b/.dockerignore @@ -0,0 +1,4 @@ +# ignore hidden files +.* + +_site/ diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 00000000..1ccee08a --- /dev/null +++ b/.gitattributes @@ -0,0 +1,3 @@ +# ensure dockerfiles are checked out with LF line endings +Dockerfile text eol=lf +*.dockerfile text eol=lf diff --git a/.gitignore b/.gitignore index d0b384d7..13d96668 100644 --- a/.gitignore +++ b/.gitignore @@ -1,10 +1,4 @@ # ignore JetBrains project .idea/ -# ignore node modules -node_modules/ -package-lock.json - -# ignore duplicated dist folder for localization -dist/en -dist/es-ES +_site/ diff --git a/.run/Dockerfile.run.xml b/.run/Dockerfile.run.xml new file mode 100644 index 00000000..2cb72d1d --- /dev/null +++ b/.run/Dockerfile.run.xml @@ -0,0 +1,20 @@ + + + + + + + + + + \ No newline at end of file diff --git a/404.html b/404.html new file mode 100644 index 00000000..9bdd8eae --- /dev/null +++ b/404.html @@ -0,0 +1,13 @@ +--- +layout: default +title: 404 - Page not found +permalink: /404.html +--- + +
+

Whoops, this page doesn't exist.

+

Move along. (404 error)

+
+ + Not found +
diff --git a/CNAME b/CNAME new file mode 100644 index 00000000..09ea21e9 --- /dev/null +++ b/CNAME @@ -0,0 +1 @@ +app.lizardbyte.dev diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 00000000..047672ac --- /dev/null +++ b/Dockerfile @@ -0,0 +1,32 @@ +FROM ruby:3.3-bookworm + +SHELL ["/bin/bash", "-o", "pipefail", "-c"] + +RUN <<_DEPS +#!/bin/bash +set -e + +apt-get update -qq +apt-get install -y --no-install-recommends \ + build-essential +apt-get clean +rm -rf /var/lib/apt/lists/* +_DEPS + +WORKDIR /app + +COPY . . + +# Install the gems specified in the Gemfile +RUN <<_SETUP +#!/bin/bash +set -e + +bundle install +_SETUP + +# Expose the port that Jekyll will run on +EXPOSE 4000 + +# Command to build and serve the Jekyll site +CMD ["bundle", "exec", "jekyll", "serve", "--trace", "--config", "_config.yml,_config_local.yml"] diff --git a/Gemfile b/Gemfile new file mode 100644 index 00000000..5312a4b0 --- /dev/null +++ b/Gemfile @@ -0,0 +1,3 @@ +source 'https://rubygems.org' +gem 'jekyll' +gem 'github-pages', group: :jekyll_plugins diff --git a/README.md b/README.md new file mode 100644 index 00000000..dbcc968c --- /dev/null +++ b/README.md @@ -0,0 +1,15 @@ +# Overview + +## About + +This repo contains the source files for the [LizardByte](https://app.lizardbyte.dev) website. + +The page is built using jekyll and hosted on GitHub Pages. + +## Integrations + +[![GitHub Workflow Status (Build)](https://img.shields.io/github/actions/workflow/status/lizardbyte/lizardbyte.github.io/build.yml.svg?branch=master&label=build&logo=github&style=for-the-badge)](https://github.com/LizardByte/LizardByte.github.io/actions/workflows/build.yml?query=branch%3Amaster) + +### CrowdIn Localization + +[![CrowdIn graph](https://app.lizardbyte.dev/dashboard/crowdin/LizardByte_graph.svg)](https://translate.lizardbyte.dev) diff --git a/README.rst b/README.rst deleted file mode 100644 index db8f6990..00000000 --- a/README.rst +++ /dev/null @@ -1,19 +0,0 @@ -Overview -======== - -About ------ -This repo contains the source files for the `LizardByte `_ website. - -Integrations ------------- - -.. image:: https://img.shields.io/github/actions/workflow/status/lizardbyte/lizardbyte.github.io/build.yml.svg?branch=master&label=build&logo=github&style=for-the-badge - :alt: GitHub Workflow Status (Build) - :target: https://github.com/LizardByte/LizardByte.github.io/actions/workflows/build.yml?query=branch%3Amaster - -CrowdIn Localization -^^^^^^^^^^^^^^^^^^^^ -.. image:: https://app.lizardbyte.dev/dashboard/crowdin/LizardByte_graph.svg - :alt: CrowdIn graph - :target: https://translate.lizardbyte.dev diff --git a/_config.yml b/_config.yml new file mode 100644 index 00000000..889199fa --- /dev/null +++ b/_config.yml @@ -0,0 +1,300 @@ +--- +########################################################### +### Welcome to Beautiful Jekyll! +### This config file is meant for settings that affect your entire website. When you first +### set up your website you should go through all these settings and edit them, but after +### the initial set up you won't need to come back to this file often. +########################################################### + +############################ +# --- Required options --- # +############################ + +# https://beautifuljekyll.com/getstarted/#method-1-github-repository-with-remote_theme +# remote_theme: daattali/beautiful-jekyll@6.0.1 +remote_theme: daattali/beautiful-jekyll@3920be6d2e79ca15f4c28b65e8af6cbdf1a76fe1 +# TODO: move to LizardByte fork, with customizations specific to our site + +# Name of website +title: LizardByte + +# Your name to show in the footer +author: LizardByte + +############################################### +# --- List of links in the navigation bar --- # +############################################### + +navbar-links: + ❤ Donate: + - GitHub: "https://github.com/sponsors/LizardByte" + - mee6: "https://mee6.xyz/m/804382334370578482" + - Patreon: "https://patreon.com/LizardByte" + - PayPal: "https://www.paypal.com/paypalme/ReenigneArcher" + GitHub: "https://github.com/LizardByte" + Resources: + - Blog: "blog" + - Docs: "https://docs.lizardbyte.dev/en/latest/about/overview.html" + - Community: "https://github.com/orgs/LizardByte/discussions" + - Discord: "discord" + - Support: "support" + Development: + - Contributing: "https://docs.lizardbyte.dev/en/latest/developers/contributing.html" + - Dashboard: "https://app.lizardbyte.dev/dashboard" + Status: "https://status.LizardByte.dev" + +# navbar-extra: +# - change-theme.html + +################ +# --- Logo --- # +################ + +# Image to show in the navigation bar - works best with a square image +# Remove this parameter if you don't want an image in the navbar +avatar: "/assets/img/navbar-avatar.png" + +# By default, the image is cut into a circle. You can disable this behaviour by setting 'round-avatar: false' +round-avatar: true + +# If you want to have an image logo in the top-left corner instead of having the title of the website, +# then specify the following parameter +# title-img: /path/to/image + + +##################################### +# --- Footer social media links --- # +##################################### + +# Select the social network links that you want to show in the footer. +# Uncomment the links you want to show and add your information to each one. +social-network-links: + rss: true # remove this line if you don't want to show an RSS link at the bottom + discord: d6MpcrbYQs + facebook: LizardByteDev + github: LizardByte + patreon: LizardByte + reddit: r/LizardByte + twitter: LizardByteDev + youtube: c/LizardByteDev +# email: "someone@example.com" +# facebook: yourname +# twitter: yourname +# youtube: c/yourname +# --- +# medium: yourname +# reddit: yourname +# linkedin: daattali +# xing: yourname +# stackoverflow: "3943160/daattali" +# snapchat: deanat78 +# instagram: deanat78 +# spotify: yourname +# telephone: +14159998888 +# steam: deanat78 +# twitch: yourname +# yelp: yourname +# telegram: yourname +# calendly: yourname +# mastodon: instance.url/@username +# bluesky: yourname +# ORCID: your ORCID ID +# google-scholar: your google scholar +# discord: "invite_code" or "users/userid" or "invite/invite_code" +# kaggle: yourname +# hackerrank: yourname +# gitlab: yourname + +# If you want your website to generate an RSS feed, provide a description +# The URL for the feed will be https:///feed.xml +rss-description: LizardByte + +########################### +# --- General options --- # +########################### + +# Select which social network share links to show in posts +share-links-active: + twitter: true + facebook: true + linkedin: true + vk: false + +# How to display the link to your website in the footer +# Remove this if you don't want a link in the footer +url-pretty: "app.LizardByte.dev" + +# Excerpt word length - Truncate the excerpt of each post on the feed page to the specified number of words +excerpt_length: 50 + +# Whether or not to show an excerpt for every blog post in the feed page +feed_show_excerpt: true + +# Whether or not to show a list of tags below each post preview in the feed page +feed_show_tags: true + +# Add a search button to the navbar +post_search: true + +# Add a button in the footer to edit the current page. Only works if your website is hosted on GitHub +edit_page_button: true + +# Allow sub-menu items (second-level navigation menu items) to be longer than the top-level menu +# If this setting is off, then long sub-menu words might get cut off +# See https://github.com/daattali/beautiful-jekyll/issues/765 to understand the issue this setting can solve +navbar-var-length: true + +# The keywords to associate with your website, for SEO purposes +keywords: "LizardByte,Sunshine,RetroArcher,self-hosted,gamestreaming,gamestream,game,streaming,media server" + +###################################### +# --- Colours / background image --- # +###################################### + +# Personalize the colors in your website. Color values can be any valid CSS color + +navbar-col: "#151515" +navbar-text-col: "#e4e6eb" +navbar-border-col: "#393a3b" +page-col: "#303436" +text-col: "#e4e4e4" +link-col: "#28a9e6" +hover-col: "#28a9e6" +footer-col: "#242526" +footer-text-col: "#a8aaa8" +footer-link-col: "#dfdfdf" +footer-hover-col: "#28a9e6" + +# Alternatively, the navbar, footer, and page background can be set to an image +# instead of color + +# navbar-img: "/assets/img/bgimage.png" +# footer-img: "/assets/img/bgimage.png" +# page-img: "/assets/img/bgimage.png" + +# Suggest a color for mobile browsers to use as the browser's theme. This is only supported by a few mobile browsers. +mobile-theme-col: "#05FF3B" + +# For any extra visual customization, you can include additional CSS files in every page on your site. +# List any custom CSS files here +site-css: + - "/assets/css/custom-styles.css" + +# If you have common JavaScript files that should be included in every page, list them here +# site-js: +# - "/assets/js/custom.js" + +################################# +# --- Web Analytics Section --- # +################################# + +# Fill in your Google Analytics tag ID (or "Measurement ID") to track your website usage +gtag: "G-0NFSCW63S2" # TODO: Update this with your own Google Analytics tag ID + +# Fill in your Cloudflare Analytics beacon token to track your website using Cloudflare Analytics +# cloudflare_analytics: "" + +# Google Tag Manager ID +# gtm: "" + +# Matomo (aka Piwik) Web statistics +# Uncomment the following section to enable Matomo. The opt-out parameter controls +# whether or not you want to allow users to opt out of tracking. +# matomo: +# site_id: "9" +# uri: "demo.wiki.pro" +# opt-out: true + +# Google Universal Analytics ID -- deprecated +# As of July 2023 this is no longer supported by Google! If you are still using `google_analytics`, +# you should switch to using the `gtag` field above instead. +# google_analytics: "UA-XXXXXXXX-X" + +#################### +# --- Comments --- # +#################### + +# To use Disqus comments, sign up to https://disqus.com and fill in your Disqus shortname (NOT the userid) +# disqus: "" + +# To use Facebook Comments, create a Facebook app and fill in the Facebook App ID +# fb_comment_id: "" + +# To use CommentBox, sign up for a Project ID on https://commentbox.io +# commentbox: "" # Project ID, e.g. "5694267682979840-proj" + +# To use Utterances comments: (0) uncomment the following section, (1) fill in +# "repository" (make sure the repository is public), (2) Enable Issues in your repository, +# (3) Install the Utterances app in your repository https://github.com/apps/utterances +# See more details about the parameters below at https://utteranc.es/ +utterances: + repository: LizardByte/community # GitHub username/repository eg. "daattali/beautiful-jekyll" + issue-term: title # Mapping between blog posts and GitHub issues + theme: gruvbox-dark # Utterances theme + label: blog-comments # Label that will be assigned to GitHub Issues created by Utterances + +# other options for comments are staticman and giscus + +################ +# --- Misc --- # +################ + +# Ruby Date Format to show dates of posts +date_format: "%B %-d, %Y" + +# Facebook App ID +# fb_app_id: "" + +################################################################################# +# --- You don't need to touch anything below here (but you can if you want) --- # +################################################################################# + +# Output options (more information on Jekyll's site) +timezone: "America/New_York" +markdown: kramdown +highlighter: rouge +permalink: /:year-:month-:day-:title/ +paginate: 5 + +kramdown: + input: GFM + +# Default YAML values (more information on Jekyll's site) +defaults: + - scope: + path: "" + type: "posts" + values: + layout: "post" + after-content: + - donate.html + footer-extra: + - footer-extra.html + comments: true # add comments to all blog posts + social-share: true # add social media sharing buttons to all blog posts + css: + - "/assets/css/show-search.css" + - scope: + path: "" # any file that's not a post will be a "page" layout by default + values: + layout: "page" + after-content: + - donate.html + footer-extra: + - footer-extra.html + +# Exclude these files from production site +exclude: + - CNAME + - Dockerfile + - Gemfile + - Gemfile.lock + - LICENSE + - README.md + +plugins: + - jekyll-paginate + - jekyll-sitemap + +# Beautiful Jekyll / Dean Attali +# 2fc73a3a967e97599c9763d05e564189 diff --git a/_config_local.yml b/_config_local.yml new file mode 100644 index 00000000..b5f56203 --- /dev/null +++ b/_config_local.yml @@ -0,0 +1,5 @@ +--- +host: "localhost" +port: 4000 +baseurl: "" +repository: "octocat/dummy" diff --git a/_includes/donate.html b/_includes/donate.html new file mode 100644 index 00000000..707ab1c1 --- /dev/null +++ b/_includes/donate.html @@ -0,0 +1,55 @@ + + diff --git a/_includes/footer-extra.html b/_includes/footer-extra.html new file mode 100644 index 00000000..b262703f --- /dev/null +++ b/_includes/footer-extra.html @@ -0,0 +1,9 @@ +{% include open-in-new-window.html %} + + + + + + diff --git a/_includes/open-in-new-window.html b/_includes/open-in-new-window.html new file mode 100644 index 00000000..171aabd0 --- /dev/null +++ b/_includes/open-in-new-window.html @@ -0,0 +1,30 @@ + diff --git a/_includes/support.html b/_includes/support.html new file mode 100644 index 00000000..06e0ae44 --- /dev/null +++ b/_includes/support.html @@ -0,0 +1,29 @@ + +
+
+
+ +
+
+

Support Center

+
Find answers and ask questions.
+
+ +
+

+ The one who knows all the answers has not been asked all the questions. + – Confucius. +

+ +
+
+
+
+
diff --git a/_posts/2024-09-23-welcome.md b/_posts/2024-09-23-welcome.md new file mode 100644 index 00000000..80712b91 --- /dev/null +++ b/_posts/2024-09-23-welcome.md @@ -0,0 +1,24 @@ +--- +layout: post +title: Welcome +subtitle: to the blog of LizardByte! +gh-repo: LizardByte/LizardByte.github.io +gh-badge: [follow, star] +tags: [news] +comments: true +author: ReenigneArcher +--- + +We're thrilled to have you here. This blog is your go-to source for all the latest announcements, updates, and news about LizardByte projects. Whether you're a developer, a tech enthusiast, or just curious about what we do, you'll find valuable insights and information here. + +### What to Expect + +- **Announcements**: Stay updated with the latest news and releases. +- **Project Updates**: Get in-depth looks at our ongoing projects and developments. +- **Community Highlights**: Learn about the amazing work our community is doing. + +### Get Involved + +We love hearing from our community! If you have any topics you'd like us to cover, or if you have any questions, feel free to reach out on our social media channels or leave a comment below. + +Thank you for being a part of the LizardByte community. Stay tuned for more exciting content! diff --git a/assets/css/custom-styles.css b/assets/css/custom-styles.css new file mode 100644 index 00000000..12b49682 --- /dev/null +++ b/assets/css/custom-styles.css @@ -0,0 +1,89 @@ +body { + font-family: 'Open Sans', sans-serif; +} + +.box-error, .box-note, .box-warning { + color: #18191a; +} + +.card-body, .card-custom, .card-footer, .cr-picker-button, .cr-picker-submenu { + --bs-bg-opacity: 1; + background-color: var(--navbar-col) !important; +} + +/* in line code */ +code { + color: #fb660a; + background-color: #111111; +} + +.feature { + display: inline-flex; + align-items: center; + justify-content: center; + height: 3rem; + width: 3rem; + font-size: 1.5rem; +} + +.feedback, .widgetbot { + display: flex; + align-items: center; + justify-content: space-around; +} + +iframe.feedback { + width: 100vw; + min-height: calc(100vh - 80px - 72px); /* subtract navbar and footer height */ +} + +@media screen and (min-width: 321px) and (max-width: 768px) { + iframe.feedback { + min-height: calc(100vh - 80px - 93px); /* subtract navbar and footer height */ + } +} + +@media screen and (max-width: 320px) { + iframe.feedback { + min-height: calc(100vh - 80px - 114px); /* subtract navbar and footer height */ + } +} + +/* page navigation buttons */ +.pagination .page-item .page-link { + background-color: #111111; + color: #e4e4e4; +} + +/* shrink logo when navbar shrinks, instead of hiding it */ +.navbar-custom.top-nav-short .avatar-container { + width: 3.125rem; + opacity: 1 !important; + visibility: visible !important; + transition: none !important; + -webkit-transition: none !important; + -moz-transition: none !important; +} + +/* hide search button */ +#nav-search-link { + display: none; +} + +/* hide powered by */ +.theme-by { + display: none; +} + +/*card image hover*/ +.hover-zoom { + overflow: hidden; +} + +.hover-zoom img { + transition: all 1.5s ease; +} + +.hover-zoom:hover img { + transform: scale(1.1); +} diff --git a/assets/css/pygment_highlights.css b/assets/css/pygment_highlights.css new file mode 100644 index 00000000..5d85704f --- /dev/null +++ b/assets/css/pygment_highlights.css @@ -0,0 +1,79 @@ +/* https://github.com/richleland/pygments-css */ +.highlight .hll { background-color: #333333 } +.highlight { background: #111111; color: #ffffff } +.highlight .c { color: #008800; font-style: italic; background-color: #0f140f } /* Comment */ +.highlight .err { color: #ffffff } /* Error */ +.highlight .esc { color: #ffffff } /* Escape */ +.highlight .g { color: #ffffff } /* Generic */ +.highlight .k { color: #fb660a; font-weight: bold } /* Keyword */ +.highlight .l { color: #ffffff } /* Literal */ +.highlight .n { color: #ffffff } /* Name */ +.highlight .o { color: #ffffff } /* Operator */ +.highlight .x { color: #ffffff } /* Other */ +.highlight .p { color: #ffffff } /* Punctuation */ +.highlight .ch { color: #008800; font-style: italic; background-color: #0f140f } /* Comment.Hashbang */ +.highlight .cm { color: #008800; font-style: italic; background-color: #0f140f } /* Comment.Multiline */ +.highlight .cp { color: #ff0007; font-weight: bold; font-style: italic; background-color: #0f140f } /* Comment.Preproc */ +.highlight .cpf { color: #008800; font-style: italic; background-color: #0f140f } /* Comment.PreprocFile */ +.highlight .c1 { color: #008800; font-style: italic; background-color: #0f140f } /* Comment.Single */ +.highlight .cs { color: #008800; font-style: italic; background-color: #0f140f } /* Comment.Special */ +.highlight .gd { color: #ffffff } /* Generic.Deleted */ +.highlight .ge { color: #ffffff } /* Generic.Emph */ +.highlight .gr { color: #ffffff } /* Generic.Error */ +.highlight .gh { color: #ffffff; font-weight: bold } /* Generic.Heading */ +.highlight .gi { color: #ffffff } /* Generic.Inserted */ +.highlight .go { color: #444444; background-color: #222222 } /* Generic.Output */ +.highlight .gp { color: #ffffff } /* Generic.Prompt */ +.highlight .gs { color: #ffffff } /* Generic.Strong */ +.highlight .gu { color: #ffffff; font-weight: bold } /* Generic.Subheading */ +.highlight .gt { color: #ffffff } /* Generic.Traceback */ +.highlight .kc { color: #fb660a; font-weight: bold } /* Keyword.Constant */ +.highlight .kd { color: #fb660a; font-weight: bold } /* Keyword.Declaration */ +.highlight .kn { color: #fb660a; font-weight: bold } /* Keyword.Namespace */ +.highlight .kp { color: #fb660a } /* Keyword.Pseudo */ +.highlight .kr { color: #fb660a; font-weight: bold } /* Keyword.Reserved */ +.highlight .kt { color: #cdcaa9; font-weight: bold } /* Keyword.Type */ +.highlight .ld { color: #ffffff } /* Literal.Date */ +.highlight .m { color: #0086f7; font-weight: bold } /* Literal.Number */ +.highlight .s { color: #0086d2 } /* Literal.String */ +.highlight .na { color: #ff0086; font-weight: bold } /* Name.Attribute */ +.highlight .nb { color: #ffffff } /* Name.Builtin */ +.highlight .nc { color: #ffffff } /* Name.Class */ +.highlight .no { color: #0086d2 } /* Name.Constant */ +.highlight .nd { color: #ffffff } /* Name.Decorator */ +.highlight .ni { color: #ffffff } /* Name.Entity */ +.highlight .ne { color: #ffffff } /* Name.Exception */ +.highlight .nf { color: #ff0086; font-weight: bold } /* Name.Function */ +.highlight .nl { color: #ffffff } /* Name.Label */ +.highlight .nn { color: #ffffff } /* Name.Namespace */ +.highlight .nx { color: #ffffff } /* Name.Other */ +.highlight .py { color: #ffffff } /* Name.Property */ +.highlight .nt { color: #fb660a; font-weight: bold } /* Name.Tag */ +.highlight .nv { color: #fb660a } /* Name.Variable */ +.highlight .ow { color: #ffffff } /* Operator.Word */ +.highlight .w { color: #888888 } /* Text.Whitespace */ +.highlight .mb { color: #0086f7; font-weight: bold } /* Literal.Number.Bin */ +.highlight .mf { color: #0086f7; font-weight: bold } /* Literal.Number.Float */ +.highlight .mh { color: #0086f7; font-weight: bold } /* Literal.Number.Hex */ +.highlight .mi { color: #0086f7; font-weight: bold } /* Literal.Number.Integer */ +.highlight .mo { color: #0086f7; font-weight: bold } /* Literal.Number.Oct */ +.highlight .sa { color: #0086d2 } /* Literal.String.Affix */ +.highlight .sb { color: #0086d2 } /* Literal.String.Backtick */ +.highlight .sc { color: #0086d2 } /* Literal.String.Char */ +.highlight .dl { color: #0086d2 } /* Literal.String.Delimiter */ +.highlight .sd { color: #0086d2 } /* Literal.String.Doc */ +.highlight .s2 { color: #0086d2 } /* Literal.String.Double */ +.highlight .se { color: #0086d2 } /* Literal.String.Escape */ +.highlight .sh { color: #0086d2 } /* Literal.String.Heredoc */ +.highlight .si { color: #0086d2 } /* Literal.String.Interpol */ +.highlight .sx { color: #0086d2 } /* Literal.String.Other */ +.highlight .sr { color: #0086d2 } /* Literal.String.Regex */ +.highlight .s1 { color: #0086d2 } /* Literal.String.Single */ +.highlight .ss { color: #0086d2 } /* Literal.String.Symbol */ +.highlight .bp { color: #ffffff } /* Name.Builtin.Pseudo */ +.highlight .fm { color: #ff0086; font-weight: bold } /* Name.Function.Magic */ +.highlight .vc { color: #fb660a } /* Name.Variable.Class */ +.highlight .vg { color: #fb660a } /* Name.Variable.Global */ +.highlight .vi { color: #fb660a } /* Name.Variable.Instance */ +.highlight .vm { color: #fb660a } /* Name.Variable.Magic */ +.highlight .il { color: #0086f7; font-weight: bold } /* Literal.Number.Integer.Long */ diff --git a/assets/css/show-search.css b/assets/css/show-search.css new file mode 100644 index 00000000..c1a6f6f4 --- /dev/null +++ b/assets/css/show-search.css @@ -0,0 +1,3 @@ +#nav-search-link { + display: block; +} diff --git a/dist/assets/images/AdobeStock_306976163.jpeg b/assets/img/banners/AdobeStock_306976163.jpeg similarity index 100% rename from dist/assets/images/AdobeStock_306976163.jpeg rename to assets/img/banners/AdobeStock_306976163.jpeg diff --git a/dist/assets/images/AdobeStock_306976163_1920x1280.jpg b/assets/img/banners/AdobeStock_306976163_1920x1280.jpg similarity index 100% rename from dist/assets/images/AdobeStock_306976163_1920x1280.jpg rename to assets/img/banners/AdobeStock_306976163_1920x1280.jpg diff --git a/dist/assets/images/AdobeStock_372471479.jpeg b/assets/img/banners/AdobeStock_372471479.jpeg similarity index 100% rename from dist/assets/images/AdobeStock_372471479.jpeg rename to assets/img/banners/AdobeStock_372471479.jpeg diff --git a/dist/assets/images/AdobeStock_372471479_1920x1280.jpg b/assets/img/banners/AdobeStock_372471479_1920x1280.jpg similarity index 100% rename from dist/assets/images/AdobeStock_372471479_1920x1280.jpg rename to assets/img/banners/AdobeStock_372471479_1920x1280.jpg diff --git a/dist/assets/images/AdobeStock_465916245.jpeg b/assets/img/banners/AdobeStock_465916245.jpeg similarity index 100% rename from dist/assets/images/AdobeStock_465916245.jpeg rename to assets/img/banners/AdobeStock_465916245.jpeg diff --git a/dist/assets/images/AdobeStock_465916245_1920x1080.jpg b/assets/img/banners/AdobeStock_465916245_1920x1080.jpg similarity index 100% rename from dist/assets/images/AdobeStock_465916245_1920x1080.jpg rename to assets/img/banners/AdobeStock_465916245_1920x1080.jpg diff --git a/dist/assets/images/og-image.png b/assets/img/banners/og-image.png similarity index 100% rename from dist/assets/images/og-image.png rename to assets/img/banners/og-image.png diff --git a/assets/img/navbar-avatar.png b/assets/img/navbar-avatar.png new file mode 100644 index 00000000..f5dc344e Binary files /dev/null and b/assets/img/navbar-avatar.png differ diff --git a/dist/js/projects.js b/assets/js/projects.js similarity index 94% rename from dist/js/projects.js rename to assets/js/projects.js index a7b77441..70732afb 100644 --- a/dist/js/projects.js +++ b/assets/js/projects.js @@ -1,9 +1,5 @@ // projects section script -// load external scripts -$.getScript('https://app.lizardbyte.dev/js/ranking_sorter.js') - - // get project container container = document.getElementById("project-container") let org_name = "LizardByte" @@ -11,16 +7,13 @@ let base_url = `https://app.${org_name.toLowerCase()}.dev` let cache_repo = "dashboard" +// create project cards $(document).ready(function(){ // Set cache = false for all jquery ajax requests. $.ajaxSetup({ cache: false, }); -}); - -// create project cards -$(document).ready(function(){ // get readthedocs projects let readthedocs = [] $.ajax({ @@ -39,7 +32,7 @@ $(document).ready(function(){ type: "GET", dataType:"json", success: function (result) { - let sorted = result.sort(rankingSorter("stargazers_count", "name")) + let sorted = result.sort(window.rankingSorter("stargazers_count", "name")) for(let repo in sorted) { if (sorted[repo]['archived'] === false && sorted[repo]['description'] !== null && sorted[repo]['fork'] === false) { @@ -68,7 +61,7 @@ $(document).ready(function(){ banner_link.append(banner) let card_body = document.createElement("div") - card_body.className = "bg-dark text-white card-body p-4 rounded-0" + card_body.className = "card-body p-4 rounded-0" card.appendChild(card_body) let card_title_link = document.createElement("a") @@ -88,7 +81,7 @@ $(document).ready(function(){ card_body.appendChild(card_paragraph) let card_footer = document.createElement("div") - card_footer.className = "card-footer p-2 pt-0 bg-dark text-white border-0 rounded-0" + card_footer.className = "card-footer p-2 pt-0 border-0 rounded-0" card.appendChild(card_footer) let repo_data_row = document.createElement("div") @@ -119,7 +112,7 @@ $(document).ready(function(){ star_link.className = "nav-link nav-link-sm text-white ms-3" star_link.href = `https://star-history.com/#${sorted[repo]['full_name']}` star_link.target = "_blank" - star_link.textContent = sorted[repo]['stargazers_count'] + star_link.textContent = window.formatNumber(sorted[repo]['stargazers_count']) repo_data_row.appendChild(star_link) let star_link_image = document.createElement("i") @@ -130,7 +123,7 @@ $(document).ready(function(){ fork_link.className = "nav-link nav-link-sm text-white ms-3" fork_link.href = `https://github.com/${sorted[repo]['full_name']}/network/members` fork_link.target = "_blank" - fork_link.textContent = sorted[repo]['forks'] + fork_link.textContent = window.formatNumber(sorted[repo]['forks']) repo_data_row.appendChild(fork_link) let fork_link_image = document.createElement("i") diff --git a/blog.html b/blog.html new file mode 100644 index 00000000..83c8efb2 --- /dev/null +++ b/blog.html @@ -0,0 +1,9 @@ +--- +layout: home +title: Blog +css: + - "/assets/css/show-search.css" +--- + + +Blog Index diff --git a/discord.html b/discord.html new file mode 100644 index 00000000..b504cebc --- /dev/null +++ b/discord.html @@ -0,0 +1,17 @@ +--- +layout: page +full-width: true +--- + +
+
+ + + +
+
diff --git a/dist/.keep b/dist/.keep deleted file mode 100644 index e69de29b..00000000 diff --git a/dist/.nojekyll b/dist/.nojekyll deleted file mode 100644 index e69de29b..00000000 diff --git a/dist/CNAME b/dist/CNAME deleted file mode 100644 index 8bb5a96d..00000000 --- a/dist/CNAME +++ /dev/null @@ -1 +0,0 @@ -app.lizardbyte.dev \ No newline at end of file diff --git a/dist/assets/images/logo-56x56.png b/dist/assets/images/logo-56x56.png deleted file mode 100644 index e3d3bb26..00000000 Binary files a/dist/assets/images/logo-56x56.png and /dev/null differ diff --git a/dist/assets/images/logo-64x64.png b/dist/assets/images/logo-64x64.png deleted file mode 100644 index b3c5074f..00000000 Binary files a/dist/assets/images/logo-64x64.png and /dev/null differ diff --git a/dist/css/custom.css b/dist/css/custom.css deleted file mode 100644 index b64217ea..00000000 --- a/dist/css/custom.css +++ /dev/null @@ -1,171 +0,0 @@ -body { - padding-top: 80px; -} - -/*Apply to elements that serve as anchors*/ -.offset-anchor { - border-top: 80px solid transparent; - margin: -80px 0 0; - -webkit-background-clip: padding-box; - -moz-background-clip: padding; - background-clip: padding-box; -} - -/*Because offset-anchor causes sections to overlap the bottom of previous ones,*/ -/*we need to put content higher so links aren't blocked by the transparent border.*/ -.container { - position: relative; - z-index: 1; -} - -.navbar { - min-height: 80px; - border-bottom: 1px solid white; -} - -.navbar-brand { - font-size: 1.75rem; -} - -.nav-link { - font-size: 1.25rem; -} - -.nav-link-sm { - font-size: 1rem; -} - -.bg-dark { - --bs-bg-opacity: 1; - background-color: #151515 !important; -} - -.bg-dark-gray { - --bs-bg-opacity: 1; - background-color: #303436 !important; -} - -.carousel-overlay-title { - position: absolute; - top: 20vh; - right: 10vw; - padding: 1rem; - text-shadow: 2px 2px 5px black; - user-select: none; - z-index: 1; -} - -.carousel-overlay-subtitle { - position: absolute; - top: 30vh; - right: 10vw; - padding: 1rem; - text-shadow: 2px 2px 5px black; - user-select: none; - z-index: 1; -} - -.carousel-item.active, .carousel-item .view { - height: 50vh !important; -} - -.carousel-item img { - object-fit: cover; - width:100% !important; - height: 100% !important; -} - -.content h1 { - font-size: 55px; -} - -@media screen and (max-width: 320px) { - .content h1 { - font-size: 30px; - } -} - -@media screen and (min-width: 321px) and (max-width: 768px) { - .content h1 { - font-size: 30px; - } -} - -.content h5 { - font-size: 23px; - margin-left: 80px; - margin-right: 80px; -} - -@media screen and (max-width: 320px) { - .content h5 { - font-size: 18px; - margin-left: 20px; - margin-right: 20px - } -} - -@media screen and (min-width: 321px) and (max-width: 768px) { - .content h5 { - font-size: 18px; - margin-left: 20px; - margin-right: 20px; - } -} - -.feature { - display: inline-flex; - align-items: center; - justify-content: center; - height: 3rem; - width: 3rem; - font-size: 1.5rem; -} - -.widgetbot { - display: flex; - align-items: center; - justify-content: space-around; -} - -.feedback { - display: flex; - align-items: center; - justify-content: space-around; -} - -iframe.feedback { - width: 100vw; - min-height: calc(100vh - 80px - 72px); /* subtract navbar and footer height */ -} - -@media screen and (min-width: 321px) and (max-width: 768px) { - iframe.feedback { - min-height: calc(100vh - 80px - 93px); /* subtract navbar and footer height */ - } -} - -@media screen and (max-width: 320px) { - iframe.feedback { - min-height: calc(100vh - 80px - 114px); /* subtract navbar and footer height */ - } -} - -/*card image hover*/ -.hover-zoom { - overflow: hidden; -} - -.hover-zoom img { - transition: all 1.5s ease; -} - -.hover-zoom:hover img { - transform: scale(1.1); -} - -/*custom text colors*/ -.text-purple { - --bs-text-opacity: 1; - color: var(--bs-purple) !important; -} diff --git a/dist/css/logos.css b/dist/css/logos.css deleted file mode 100644 index 41acf1de..00000000 --- a/dist/css/logos.css +++ /dev/null @@ -1,7 +0,0 @@ -.logo-mee6 { - content: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAALQAAAC0CAYAAAA9zQYyAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAPxSURBVHhe7d3NcdtWGEBRMWWkCG/TQrJVRanI27iFbF1E2nDwLNAjMxJFgKAUXJ4zwxEtm/K8+a6eIP7h8G3yABG/zB8hQdCkCJoUQZMiaFIETYqgSRE0KYImRdCkCJoUQZMiaFIETYqgSRE0KYImRdCkCJoUQZMiaFIETYqgSRE0KYImRdCkCJoUQZMiaFIETYqgSRE0KYImRdCkCJoUQZMiaFIETYqgSRE0KYImRdCkCJoUQZMiaFIETYqgSRE0KYImRdCkCJoUQZMiaFIETYqgSRE0KYImRdCkCJoUQZMiaFIETYqgSRE0KfcW9D/z5V6MtX6ZP96Fw7fJfL1qDPPr09WHP08+fpouvz5dzfhpvYfD4e9pxL+N60+fSq75h3LQx8F+H+r3z5x4NujKkMeaH19b7xBc80+qQb852OfmIX+eLnsd8JvfvKcCa35RMehFMR/teMCr1jsUo679Urh6uPNtHqfL+Bp78nXNeof5dsfj7YRS0KtjPtrhgMeaj7/srTVuv7dv4leVgl69U53Y04CvXnNtl/bAyokdDXiL3fkos0sLer+2+omU2qUrQW+5W7FjdmhSKkGP+1Ht0Nihd+zT/MDI1eavMx4K3z1Bn9jRcLf8qTS+TuLRwlLQW+1Yexru1Wsu7c5DKegR4edrBrzD4V615vl2nsvxP7Z6wDse7qo1F2MeisfQiwccGO6iNVdjHqq/FB4H/Ne5IY+/G/9muloY7ptrjq33Rff2EqxTyVdtTF5bc3W9P9xD0NyR6iEHd0rQpAiaFEGTImhSBE2KoEkRNCmCJkXQpAiaFEGTImhSBE2KoEkRNCmCJkXQpAiaFEGTImhSBE2KtzFY7tz7fLyH/HtrXEPQlzuGfPHZWm9hGlf2bby2IOjLfZlC/mO+/qFE/TrH0DtUOmvV1gS9Q/MOnXmT8i0Jep8yp5DYmqBJEfTlNjvrFLcj6MuNH/Effi5Ex8/nCXp/HD+fIehlPvSww+78Ng+sLPdhD7BMoxrnR/n96U+8xA693Ifs0nbnywh6uXH8uvi8gNeY/y8PdV9A0Ou8W9RiXkbQ6908ajEvJ+jrHKM+e4LPNcS8jns5tjOeL/147XOl55DHfc2eyL+CoLe1+kUAQt6GoG/j9GVa/wn8WcBHQt6AoN/HS69DFPANCJoU93KQImhSBE2KoEkRNCmCJkXQpAiaFEGTImhSBE2KoEkRNCmCJkXQpAiaFEGTImhSBE2KoEkRNCmCJkXQpAiaFEGTImhSBE2KoEkRNCmCJkXQpAiaFEGTImhSBE2KoEkRNCmCJkXQpAiaFEGTImhSBE2KoEkRNCmCJkXQpAiaFEET8vDwL4MfYs7t2ZY0AAAAAElFTkSuQmCC"); -} - -.language-logo { - height: 2em; -} diff --git a/dist/discord.html b/dist/discord.html deleted file mode 100644 index 5410afef..00000000 --- a/dist/discord.html +++ /dev/null @@ -1,68 +0,0 @@ - - - - LizardByte | Discord - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
-
-
- - - -
-
-
-
- -
- - - - - - - - - diff --git a/dist/favicon.ico b/dist/favicon.ico deleted file mode 100644 index 79620bf5..00000000 Binary files a/dist/favicon.ico and /dev/null differ diff --git a/dist/feedback.html b/dist/feedback.html deleted file mode 100644 index 782d0ed4..00000000 --- a/dist/feedback.html +++ /dev/null @@ -1,68 +0,0 @@ - - - - LizardByte | Feedback - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
-
- -
-
-
- -
- - - - - - - - - - - diff --git a/dist/index.html b/dist/index.html deleted file mode 100644 index f8ee29e6..00000000 --- a/dist/index.html +++ /dev/null @@ -1,359 +0,0 @@ - - - - LizardByte - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - -
-
- -
-
- - -
-
-
-

About us

-
-
-
-
- -
-

Open source

-

All of our projects are open source.

-
-
-
- -
-

Free

-

Free to use software.

-
-
-
- -
-

Community

-

- We are community oriented and our projects are driven by the community.

-
-
-
- -
-

Continuous Improvement

-

We are committed to improving our products.

-
-
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - -
-
-
-
-
-

Projects

-

Check out our most popular projects!

-
-
-
-
-
-
- - -
-
-
-
-

- -

-
-
-
-

Social

-
- - Discord - - - Facebook - - - Reddit - - - X - - - YouTube - -
-
-
-
- - - - - -
-
-
-
-
-
Support Center
-
Find answers and ask questions.
-
-
-

- The one who knows all the answers has not been asked all the questions. - – Confucius. -

- -
-
-
-
-
- -
- -
- - - - - - - - - - - - - diff --git a/dist/js/crowdin.js b/dist/js/crowdin.js deleted file mode 100644 index 7aaaaed4..00000000 --- a/dist/js/crowdin.js +++ /dev/null @@ -1,55 +0,0 @@ -// this script requires jquery to be loaded on the source page, like so... -// - -// use Jquery to load other javascript -$.getScript('https://proxy-translator.app.crowdin.net/assets/proxy-translator.js', function() { - window.proxyTranslator.init({ - baseUrl: "https://app.lizardbyte.dev", - appUrl: "https://proxy-translator.app.crowdin.net", - valuesParams: "U2FsdGVkX19ClOT7gAzJBnfQPMcvqkPxFWxyPrnN7UEMztYDAOA+/W4kvMqRz2gDLv2/K3hTEtwbcq5imv5k5MUAykz0uklBcdH49kqeo1AhYpNKXdwXZNYBPXmNUm5F", - distributionBaseUrl: "https://distributions.crowdin.net", - filePath: "/app.lizardbyte.dev.json", - distribution: "0913bb75b61f0b26247ffa91bw4", - languagesData: { - "fr": {"code":"fr","name":"French","twoLettersCode":"fr"}, - "es-ES": {"code":"es-ES","name":"Spanish","twoLettersCode":"es"}, - "de": {"code":"de","name":"German","twoLettersCode":"de"}, - "it": {"code":"it","name":"Italian","twoLettersCode":"it"}, - "ja":{"code":"ja","name":"Japanese","twoLettersCode":"ja"}, - "pt-PT":{"code":"pt-PT","name":"Portuguese","twoLettersCode":"pt"}, - "ru": {"code":"ru","name":"Russian","twoLettersCode":"ru"}, - "sv-SE":{"code":"sv-SE","name":"Swedish","twoLettersCode":"sv"}, - "tr":{"code":"tr","name":"Turkish","twoLettersCode":"tr"}, - "zh-CN":{"code":"zh-CN","name":"Chinese Simplified","twoLettersCode":"zh"}, - "en": {"code":"en","name":"English","twoLettersCode":"en"}, - "en-US": {"code":"en-US","name":"English, United States","twoLettersCode":"en"}, - "en-GB": {"code":"en-GB","name":"English, United Kingdom","twoLettersCode":"en"} - }, - defaultLanguage: "en", - defaultLanguageTitle: "English", - languageDetectType: "default", - poweredBy: false, - position: "bottom-left", - submenuPosition: "top-left", - }); - - // change styling of language selector button - let button = document.getElementsByClassName('cr-picker-button')[0] - button.classList.add('border-white') - button.classList.add('btn') - button.classList.add('btn-outline-light') - button.classList.add('bg-dark') - button.classList.add('text-white') - button.classList.add('rounded-0') - - // change styling of language selector menu - let menu = document.getElementsByClassName('cr-picker-submenu')[0] - menu.classList.add('border-white') - menu.classList.add('bg-dark') - menu.classList.add('text-white') - menu.classList.add('rounded-0') - - // change styling of selected language in menu - let selected = document.getElementsByClassName('cr-selected')[0] - selected.classList.add('text-white') -}); diff --git a/dist/js/crowdin_web_widget.js b/dist/js/crowdin_web_widget.js deleted file mode 100644 index 9ffadc98..00000000 --- a/dist/js/crowdin_web_widget.js +++ /dev/null @@ -1,24 +0,0 @@ -// this script requires jquery to be loaded on the source page, like so... -// - -// use Jquery to load other javascript -$.getScript('https://crowdin.com/js/crowdjet/crowdjet.js', function() { -// crowdin web widget: https://crowdin.com/project/lizardbyte/tools/web-widget - // get body - let body = document.getElementsByTagName('body')[0] - - // create container (popup) - let container = document.createElement('div') - container.id = 'crowdjet-container' - container.dataset.projectId = '606145' - container.style.bottom = '90px' - container.style.left = '5px' - body.appendChild(container) - - // create expand container (button) - let expandContainer = document.createElement('div') - expandContainer.id = 'crowdjet-expand-container' - expandContainer.style.bottom = '0px' - expandContainer.style.left = '120px' - body.appendChild(expandContainer) -}) diff --git a/dist/js/discord.js b/dist/js/discord.js deleted file mode 100644 index 401e8d2d..00000000 --- a/dist/js/discord.js +++ /dev/null @@ -1,27 +0,0 @@ -function randomQuote(quote, crate) { - let the_quote = quote['quote_safe'] || quote['quote'] - crate.notify(the_quote) -} - -//Widgetbot initialization -let widgetbot = document.createElement('script') -widgetbot.setAttribute('src', 'https://cdn.jsdelivr.net/npm/@widgetbot/crate@3') -widgetbot.async = true; -widgetbot.onload = () => { - new Crate({ - server: '804382334370578482', - channel: '804383092822900797', - defer: false, - }) -} -document.head.appendChild(widgetbot) - -// get random video game quotes and notify the user on Widgetbot after 7 minutes -fetch('https://app.lizardbyte.dev/uno/random-quotes/games.json').then(r => r.json()).then(result => { - let quote = result[Math.floor(Math.random() * result.length)] - setTimeout(() => { - if (crate) { - randomQuote(quote, crate) - } - }, 7 * 60 * 1000) -}) diff --git a/dist/js/footer.js b/dist/js/footer.js deleted file mode 100644 index 1b7117d4..00000000 --- a/dist/js/footer.js +++ /dev/null @@ -1,20 +0,0 @@ -document.getElementById("footer-container").className = "bg-dark py-4 mt-auto" -document.getElementById("footer-container").innerHTML = ` -
-
-
- -
-
- Privacy - · - Terms -
-
-
-` - -// Update year -let currDate = new Date(); -let currYear = currDate.getFullYear(); -document.getElementById("copyright-text").textContent = `Copyright \u00A9 LizardByte ${currYear}` diff --git a/dist/js/levenshtein_distance.js b/dist/js/levenshtein_distance.js deleted file mode 100644 index 6356c492..00000000 --- a/dist/js/levenshtein_distance.js +++ /dev/null @@ -1,36 +0,0 @@ -let levenshteinDistance = { - get: function (a, b) { - if (a.length === 0) return b.length; - if (b.length === 0) return a.length; - - let matrix = []; - - // increment along the first column of each row - let i; - for (i = 0; i <= b.length; i++) { - matrix[i] = [i]; - } - - // increment each column in the first row - let j; - for (j = 0; j <= a.length; j++) { - matrix[0][j] = j; - } - - // Fill in the rest of the matrix - for (i = 1; i <= b.length; i++) { - for (j = 1; j <= a.length; j++) { - if (b.charAt(i - 1) === a.charAt(j - 1)) { - matrix[i][j] = matrix[i - 1][j - 1]; - } else { - matrix[i][j] = Math.min(matrix[i - 1][j - 1] + 1, // substitution - Math.min(matrix[i][j - 1] + 1, // insertion - matrix[i - 1][j] + 1)); // deletion - } - } - } - - // return the percentage of the levenshtein distance - return (1 - (matrix[b.length][a.length] / Math.max(a.length, b.length))) * 100 - } -} diff --git a/dist/js/navbar.js b/dist/js/navbar.js deleted file mode 100644 index 7cb5b5f6..00000000 --- a/dist/js/navbar.js +++ /dev/null @@ -1,77 +0,0 @@ -// setup Scrollspy https://getbootstrap.com/docs/5.0/components/scrollspy/ -let base_element = document.getElementsByTagName("body")[0]; -base_element.setAttribute("data-bs-spy", "scroll"); -base_element.setAttribute("data-bs-target", "#nav-container"); -base_element.setAttribute("data-bs-offset", "80"); - -let navbar_element = document.getElementById("nav-container"); -navbar_element.className = "navbar navbar-expand-lg navbar-dark bg-black fixed-top" -navbar_element.innerHTML = ` -
- - - - -
-`; - -// create the navbar dynamically -let sections = document.getElementsByTagName('section'); -let navbar = document.getElementById("navbarToggle") -navbar.className = "collapse navbar-collapse" - -let navbar_list = document.createElement("ul") -navbar_list.className = "navbar-nav nav ms-auto" -navbar.appendChild(navbar_list) - -let nav_list_item_class = "nav-item" -let nav_link_class = "nav-link fw-bold menu-list" - -// Add HOME link -// let home_item = document.createElement("li") -// home_item.className = nav_list_item_class -// let home_link = document.createElement("a") -// -// home_link.className = nav_link_class -// home_link.href = "index.html" -// home_link.textContent = "Home" -// home_item.appendChild(home_link) -// navbar_list.appendChild(home_item) - -for(let i = 0; i < sections.length; ++i) { - if (sections[i].id) { - let navbar_item = document.createElement("li") - navbar_item.className = nav_list_item_class - let navbar_link = document.createElement("a") - - navbar_link.className = nav_link_class - navbar_link.href = `#${sections[i].id}` - navbar_link.textContent = sections[i].id - - // check if crowdin-ignore is in the section classes and add it to the link - if (sections[i].classList.contains("crowdin-ignore")) { - navbar_link.classList.add("crowdin-ignore") - } - - navbar_item.appendChild(navbar_link) - navbar_list.appendChild(navbar_item) - } -} - -// // highlight the active link ... not necessary with Bootstrap/Scrollspy -// $(function() { -// $('ul.navbar-nav a').bind('click',function(){ -// $('ul.navbar-nav a').removeClass('active'); -// $(this).addClass('active'); -// }); -// }); diff --git a/dist/js/ranking_sorter.js b/dist/js/ranking_sorter.js deleted file mode 100644 index b0411cdd..00000000 --- a/dist/js/ranking_sorter.js +++ /dev/null @@ -1,18 +0,0 @@ -let rankingSorter = function (firstKey, secondKey) { - return function(a, b) { - if (a[firstKey] > b[firstKey]) { - return -1; - } else if (a[firstKey] < b[firstKey]) { - return 1; - } - else { - if (a[secondKey] > b[secondKey]) { - return 1; - } else if (a[secondKey] < b[secondKey]) { - return -1; - } else { - return 0; - } - } - } -} diff --git a/dist/js/sleep.js b/dist/js/sleep.js deleted file mode 100644 index c91054d9..00000000 --- a/dist/js/sleep.js +++ /dev/null @@ -1,4 +0,0 @@ -// sleep function -let sleep = ms => { - return new Promise(resolve => setTimeout(resolve, ms)); -}; diff --git a/dist/privacy.html b/dist/privacy.html deleted file mode 100644 index 3803aec4..00000000 --- a/dist/privacy.html +++ /dev/null @@ -1,146 +0,0 @@ - - - - LizardByte | Privacy Policy - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - -
-

Welcome to our Privacy Policy

-

Your privacy is critically important to us.

-
- -

It is LizardByte's policy to respect your privacy regarding any information we may collect while - operating our website. This Privacy Policy applies to - https://app.lizardbyte.dev - (hereinafter, "us", "we", or "https://app.lizardbyte.dev"). We respect your privacy and are - committed to protecting personally identifiable information you may provide us through the - Website. We have adopted this privacy policy ("Privacy Policy") to explain what information may - be collected on our Website, how we use this information, and under what circumstances we may - disclose the information to third parties. This Privacy Policy applies only to information we - collect through the Website and does not apply to our collection of information from other - sources.

-

This Privacy Policy, together with the Terms of service posted on our Website, set forth the - general rules and policies governing your use of our Website. Depending on your activities when - visiting our Website, you may be required to agree to additional terms of service.

-
- -

Website Visitors

-

Like most website operators, LizardByte collects non-personally-identifying information of the - sort that web browsers and servers typically make available, such as the browser type, language - , referring site, and the date and time of each visitor request. LizardByte's purpose in - collecting non-personally identifying information is to better understand how LizardByte's - visitors use its website. From time to time, LizardByte may release non-personally-identifying - information in the aggregate, e.g., by publishing a report on trends in the usage of its - website.

-

LizardByte also collects potentially personally-identifying information like Internet Protocol - (IP) addresses for logged in users and for users leaving comments on https://app.lizardbyte.dev - blog posts. LizardByte only discloses logged in user and commenter IP addresses under the same - circumstances that it uses and discloses personally-identifying information as described - below.

-
- -

Security

-

The security of your Personal Information is important to us, but remember that no method of - transmission over the Internet, or method of electronic storage is 100% secure. While we strive - to use commercially acceptable means to protect your Personal Information, we cannot guarantee - its absolute security.

-
- -

Advertisements

-

Ads appearing on our website may be delivered to users by advertising partners, who may set - cookies. These cookies allow the ad server to recognize your computer each time they send you - an online advertisement to compile information about you or others who use your computer. This - information allows ad networks to, among other things, deliver targeted advertisements that - they believe will be of most interest to you. This Privacy Policy covers the use of cookies by - LizardByte and does not cover the use of cookies by any advertisers.

-
- -

Links To External Sites

-

Our Service may contain links to external sites that are not operated by us. If you click on a - third party link, you will be directed to that third party's site. We strongly advise you to - review the Privacy Policy and terms of service of every site you visit.

-

We have no control over, and assume no responsibility for the content, privacy policies or - practices of any third party sites, products or services.

-
- -

Aggregated Statistics

-

LizardByte may collect statistics about the behavior of visitors to its website. LizardByte may - display this information publicly or provide it to others. However, LizardByte does not - disclose your personally-identifying information.

-
- -

Cookies

-

To enrich and perfect your online experience, LizardByte uses "Cookies", similar technologies - and services provided by others to display personalized content, appropriate advertising and - store your preferences on your computer.

-

A cookie is a string of information that a website stores on a visitor's computer, and that the - visitor's browser provides to the website each time the visitor returns. LizardByte uses - cookies to help LizardByte identify and track visitors, their usage of - https://app.lizardbyte.dev, and their website access preferences. LizardByte visitors who do - not wish to have cookies placed on their computers should set their browsers to refuse cookies - before using LizardByte's websites, with the drawback that certain features of LizardByte's - websites may not function properly without the aid of cookies.

-

By continuing to navigate our website without changing your cookie settings, you hereby - acknowledge and agree to LizardByte's use of cookies.

-
- -

Privacy Policy Changes

-

Although most changes are likely to be minor, LizardByte may change its Privacy Policy from time - to time, and in LizardByte's sole discretion. LizardByte encourages visitors to frequently - check this page for any changes to its Privacy Policy. Your continued use of this site after - any change in this Privacy Policy will constitute your acceptance of such change.

-
-
-
- -
- - - - - - - - - - - diff --git a/dist/support.html b/dist/support.html deleted file mode 100644 index d978cc39..00000000 --- a/dist/support.html +++ /dev/null @@ -1,238 +0,0 @@ - - - - LizardByte | Support - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
-
-
-
-
-
-

Need support?

-

First, read the documentation!

-
-
-
- - -
-
-
-

- -

-
-
- -

Read the Docs

-
-

- Select projects have the documentation hosted on Read the Docs. - Look for the icon paper on the project cards at our home page. -

-

- - Type: Documentation - -

- Read the docs -
-
-
- -
- -
-
-
-
-

Need more help?

-

Ask questions

-
-
-
- - -
-
-
-

- -

-
-
- -

Discord

-
-

- This is our preferred method of providing support! - Please read the rules, be courteous, and use the appropriate channel - when posting. -

-

- - Type: Primary Support - -

- Discord -
-
-
- - -
-
-
-

- -

-
-
- -

GitHub

-
-

- GitHub Discussions are available for support, feature requests, and general discourse. - Please DO NOT use GitHub issues to ask for support! -

-

- - Type: Primary Support - -

- GitHub -
-
-
- - -
-
-
-

- -

-
-
- -

Reddit

-
-

- For aliens only! Please read the rules, be courteous, and use the appropriate - flair when posting. Provide your logs when asking for help. -

-

- - Type: Community Support - -

- Reddit -
-
-
- - -
-
-
-

- -

-
-
- -

Facebook Group

-
-

- Our official Facebook group. This is best for simple questions. - Please read the rules, and be courteous when posting. -

-

- - Type: Community Support - -

- Facebook group -
-
-
- -
- -
-
-
- -
- - - - - - - - - - - diff --git a/dist/terms.html b/dist/terms.html deleted file mode 100644 index 4b47f8bc..00000000 --- a/dist/terms.html +++ /dev/null @@ -1,185 +0,0 @@ - - - - LizardByte | Terms - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - -
-

Welcome to LizardByte

-

These terms of service outline the rules and regulations for the use of LizardByte's Website.

-
- -

By accessing this website we assume you accept these terms of service in full. Do not continue to - use LizardByte's website if you do not accept all the terms of service stated on this page.

-

The following terminology applies to these Terms of Service, Privacy Statement and Disclaimer Notice - and any or all Agreements: "Client", "You" and "Your" refers to you, the person accessing this - website and accepting the Company's terms of service. "The Company", "Ourselves", "We", "Our" and - "Us", refers to our Company. "Party", "Parties", or "Us", refers to both the Client and ourselves, - or either the Client or ourselves. All terms refer to the offer, acceptance and consideration of - payment necessary to undertake the process of our assistance to the Client in the most appropriate - manner, whether by formal meetings of a fixed duration, or any other means, for the express purpose - of meeting the Client's needs in respect of provision of the Company's stated services/products, in - accordance with and subject to, prevailing law of . Any use of the above terminology or other words - in the singular, plural, capitalisation and/or he/she or they, are taken as interchangeable and - therefore as referring to same.

-
- -

Cookies

-

We employ the use of cookies. By using LizardByte's website you consent to the use of cookies - in accordance with LizardByte's privacy policy.

-

Most of the modern day interactive websites use cookies to enable us to retrieve user details for - each visit. Cookies are used in some areas of our site to enable the functionality of this area and - ease of use for those people visiting. Some of our affiliate / advertising partners may also use - cookies.

-
- -

License

-

Unless otherwise stated, LizardByte and/or it's licensors own the intellectual property rights for - all material on LizardByte. All intellectual property rights are reserved. You may view and/or print - pages from https://app.lizardbyte.dev for your own personal use subject to restrictions set in these - terms of service.

-

You must not:

-
    -
  1. Republish material from https://app.lizardbyte.dev
  2. -
  3. Sell, rent or sublicense material from https://app.lizardbyte.dev
  4. -
  5. Reproduce, duplicate or copy material from https://app.lizardbyte.dev
  6. -
-

Redistribute content from LizardByte (unless content is specifically made for redistribution).

-
- -

User Comments

-
    -
  1. This Agreement shall begin on the date hereof.
  2. -
  3. Certain parts of this website offer the opportunity for users to post and exchange opinions, - information, material and data ('Comments') in areas of the website. LizardByte does not - screen, edit, publish or review Comments prior to their appearance on the website and Comments - do not reflect the views or opinions ofLizardByte, its agents or affiliates. Comments reflect - the view and opinion of the person who posts such view or opinion. To the extent permitted by - applicable laws LizardByte shall not be responsible or liable for the Comments or for any loss - cost, liability, damages or expenses caused and or suffered as a result of any use of and/or - posting of and/or appearance of the Comments on this website.
  4. -
  5. LizardByte reserves the right to monitor all Comments and to remove any Comments which it - considers in its absolute discretion to be inappropriate, offensive or otherwise in breach of - these Terms of Service.
  6. -
  7. You warrant and represent that: -
      -
    1. You are entitled to post the Comments on our website and have all necessary licenses - and consents to do so;
    2. -
    3. The Comments do not infringe any intellectual property right, including without - limitation copyright, patent or trademark, or other proprietary right of any third - party;
    4. -
    5. The Comments do not contain any defamatory, libelous, offensive, indecent or otherwise - unlawful material or material which is an invasion of privacy
    6. -
    7. The Comments will not be used to solicit or promote business or custom or present - commercial activities or unlawful activity.
    8. -
    -
  8. -
  9. You hereby grant to LizardByte a non-exclusive royalty-free license to use, - reproduce, edit and authorize others to use, reproduce and edit any of your Comments in any and - all forms, formats or media.
  10. -
-
- -

Iframes

-

Without prior approval and express written permission, you may not create frames around our Web - pages or use other techniques that alter in any way the visual presentation or appearance of our - Website.

-
- -

Reservation of Rights

-

We reserve the right at any time and in its sole discretion to request that you remove all links or - any particular link to our Website. You agree to immediately remove all links to our Website upon - such request. We also reserve the right to amend these terms of service and its linking policy at - any time. By continuing to link to our Website, you agree to be bound to and abide by these - linking terms of service.

-
- -

Removal of links from our website

-

If you find any link on our Website or any linked website objectionable for any reason, you may - contact us about this. We will consider requests to remove links but will have no obligation to do - so or to respond directly to you.

-

Whilst we endeavour to ensure that the information on this website is correct, we do not warrant its - completeness or accuracy; nor do we commit to ensuring that the website remains available or that - the material on the website is kept up to date.

-
- -

Content Liability

-

We shall have no responsibility or liability for any content appearing on your Website. You agree - to indemnify and defend us against all claims arising out of or based upon your Website. No link(s) - may appear on any page on your Website or within any context containing content or materials that - may be interpreted as libelous, obscene or criminal, or which infringes, otherwise violates, or - advocates the infringement or other violation of, any third party rights.

-
- -

Disclaimer

-

To the maximum extent permitted by applicable law, we exclude all representations, warranties and - conditions relating to our website and the use of this website (including, without limitation, any - warranties implied by law in respect of satisfactory quality, fitness for purpose and/or the use of - reasonable care and skill). Nothing in this disclaimer will:

-
    -
  1. limit or exclude our or your liability for death or personal injury resulting from negligence;
  2. -
  3. limit or exclude our or your liability for fraud or fraudulent misrepresentation;
  4. -
  5. limit any of our or your liabilities in any way that is not permitted under applicable law; or
  6. -
  7. exclude any of our or your liabilities that may not be excluded under applicable law.
  8. -
-

The limitations and exclusions of liability set out in this Section and elsewhere in this - disclaimer: (a) are subject to the preceding paragraph; and (b) govern all liabilities arising - under the disclaimer or in relation to the subject matter of this disclaimer, including liabilities - arising in contract, in tort (including negligence) and for breach of statutory duty.

-

To the extent that the website and the information and services on the website are provided free of - charge, we will not be liable for any loss or damage of any nature.

-
-
-
- -
- - - - - - - - - - - diff --git a/dist/assets/images/favicon.ico b/favicon.ico similarity index 100% rename from dist/assets/images/favicon.ico rename to favicon.ico diff --git a/feed.xml b/feed.xml new file mode 100644 index 00000000..527816ea --- /dev/null +++ b/feed.xml @@ -0,0 +1,29 @@ +--- +layout: null +--- + + + + {% if site.title %} + {{ site.title | xml_escape }} + {% endif %} + {% if site.rss-description %} + {{ site.rss-description | xml_escape }} + {% endif %} + {{ '/' | absolute_url }} + + {% assign excerpt_length = site.excerpt_length | default: 50 %} + {% for post in site.posts limit:20 %} + + {{ post.title | strip_html | xml_escape }} + + {% if post.subtitle %}{{ post.subtitle | strip_html | xml_escape }} - {% endif %} + {{ post.content | strip_html | xml_escape | truncatewords: excerpt_length }} + + {{ post.date | date: "%a, %d %b %Y %H:%M:%S %z" }} + {{ post.url | absolute_url }} + {{ post.url | absolute_url }} + + {% endfor %} + + diff --git a/feedback.html b/feedback.html new file mode 100644 index 00000000..ba0ff9a2 --- /dev/null +++ b/feedback.html @@ -0,0 +1,15 @@ +--- +layout: page +full-width: true +--- + +
+ +
diff --git a/index.html b/index.html new file mode 100644 index 00000000..50b75885 --- /dev/null +++ b/index.html @@ -0,0 +1,84 @@ +--- +layout: page +title: LizardByte +subtitle: Discover the world of self-hosted cloud gaming! +full-width: true +after-content: + - donate.html + - support.html +cover-img: + - /assets/img/banners/AdobeStock_465916245_1920x1080.jpg + - /assets/img/banners/AdobeStock_306976163_1920x1280.jpg + - /assets/img/banners/AdobeStock_372471479_1920x1280.jpg +ext-js: + - https://cdn.jsdelivr.net/npm/jquery@3.7.1/dist/jquery.min.js + - https://cdn.jsdelivr.net/npm/@lizardbyte/shared-web@2024.921.191855/dist/format-number.js + - https://cdn.jsdelivr.net/npm/@lizardbyte/shared-web@2024.921.191855/dist/ranking-sorter.js +js: + - /assets/js/projects.js +--- + + +
+
+
+

About us

+
+
+
+
+ +
+

Open source

+

All of our projects are open source.

+
+
+
+ +
+

Free

+

Free to use software.

+
+
+
+ +
+

Community

+

+ We are community oriented and our projects are driven by the community.

+
+
+
+ +
+

Continuous Improvement

+

We are committed to improving our products.

+
+
+
+
+
+
+ + +
+
+
+
+
+

Projects

+

Check out our most popular projects!

+
+
+
+
+ + +
+
diff --git a/package.json b/package.json deleted file mode 100644 index de4df689..00000000 --- a/package.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "dependencies": { - "@fortawesome/fontawesome-free": "6.6.0", - "bootstrap": "5.3.3", - "jquery": "3.7.1" - } -} diff --git a/privacy.md b/privacy.md new file mode 100644 index 00000000..1a740689 --- /dev/null +++ b/privacy.md @@ -0,0 +1,87 @@ +--- +layout: page +title: LizardByte | Privacy +--- + + + + +# Welcome to our Privacy Policy + +### Your privacy is critically important to us. + +It is LizardByte's policy to respect your privacy regarding any information we may collect while operating our website. +This Privacy Policy applies to [https://app.lizardbyte.dev](https://app.lizardbyte.dev) +(hereinafter, "us", "we", or "https://app.lizardbyte.dev"). We respect your privacy and are committed to protecting +personally identifiable information you may provide us through the Website. We have adopted this privacy policy +("Privacy Policy") to explain what information may be collected on our Website, how we use this information, and under +what circumstances we may disclose the information to third parties. This Privacy Policy applies only to information we +collect through the Website and does not apply to our collection of information from other sources. + +This Privacy Policy, together with the Terms of service posted on our Website, set forth the general rules and policies +governing your use of our Website. Depending on your activities when visiting our Website, you may be required to agree +to additional terms of service. + +## Website Visitors + +Like most website operators, LizardByte collects non-personally-identifying information of the sort that web browsers +and servers typically make available, such as the browser type, language, referring site, and the date and time of each +visitor request. LizardByte's purpose in collecting non-personally identifying information is to better understand how +LizardByte's visitors use its website. From time to time, LizardByte may release non-personally-identifying +information in the aggregate, e.g., by publishing a report on trends in the usage of its website. + +LizardByte also collects potentially personally-identifying information like Internet Protocol (IP) addresses for +logged in users and for users leaving comments on https://app.lizardbyte.dev blog posts. LizardByte only discloses +logged in user and commenter IP addresses under the same circumstances that it uses and discloses personally-identifying +information as described below. + +## Security + +The security of your Personal Information is important to us, but remember that no method of transmission over the +Internet, or method of electronic storage is 100% secure. While we strive to use commercially acceptable means to +protect your Personal Information, we cannot guarantee its absolute security. + +## Advertisements + +Ads appearing on our website may be delivered to users by advertising partners, who may set cookies. These cookies +allow the ad server to recognize your computer each time they send you an online advertisement to compile information +about you or others who use your computer. This information allows ad networks to, among other things, deliver targeted +advertisements that they believe will be of most interest to you. This Privacy Policy covers the use of cookies by +LizardByte and does not cover the use of cookies by any advertisers. + +## Links To External Sites + +Our Service may contain links to external sites that are not operated by us. If you click on a third party link, you +will be directed to that third party's site. We strongly advise you to review the Privacy Policy and terms of service +of every site you visit. + +We have no control over, and assume no responsibility for the content, privacy policies or practices of any third party +sites, products or services. + +## Aggregated Statistics + +LizardByte may collect statistics about the behavior of visitors to its website. LizardByte may display this +information publicly or provide it to others. However, LizardByte does not disclose your personally-identifying +information. + +## Cookies + +To enrich and perfect your online experience, LizardByte uses "Cookies", similar technologies and services provided +by others to display personalized content, appropriate advertising and store your preferences on your computer. + +A cookie is a string of information that a website stores on a visitor's computer, and that the visitor's browser +provides to the website each time the visitor returns. LizardByte uses cookies to help LizardByte identify and track +visitors, their usage of https://app.lizardbyte.dev, and their website access preferences. LizardByte visitors who do +not wish to have cookies placed on their computers should set their browsers to refuse cookies before using +LizardByte's websites, with the drawback that certain features of LizardByte's websites may not function properly +without the aid of cookies. + +By continuing to navigate our website without changing your cookie settings, you hereby acknowledge and agree to +LizardByte's use of cookies. + +## Privacy Policy Changes + +Although most changes are likely to be minor, LizardByte may change its Privacy Policy from time to time, and in +LizardByte's sole discretion. LizardByte encourages visitors to frequently check this page for any changes to its +Privacy Policy. Your continued use of this site after any change in this Privacy Policy will constitute your acceptance +of such change. diff --git a/support.html b/support.html new file mode 100644 index 00000000..2187ac3b --- /dev/null +++ b/support.html @@ -0,0 +1,191 @@ +--- +layout: page +full-width: true +--- + +
+ +
+
+
+

Need support?

+

First, read the documentation!

+
+
+
+ + +
+ +
+
+

+ +

+
+ +
+ +

Read the Docs

+
+

+ Select projects have the documentation hosted on Read the Docs. + Look for the icon paper on the project cards at our home page. +

+

+ + Type: Documentation + +

+ Read the docs +
+
+
+ +
+ +
+ +
+
+
+

Need more help?

+

Ask questions

+
+
+
+ + +
+ +
+
+

+ +

+
+ +
+ +

Discord

+
+

+ This is our preferred method of providing support! + Please read the rules, be courteous, and use the appropriate channel + when posting. +

+

+ + Type: Primary Support + +

+ Discord +
+
+
+ + +
+ +
+
+

+ +

+
+ +
+ +

GitHub

+
+

+ GitHub Discussions are available for support, feature requests, and general discourse. + Please DO NOT use GitHub issues to ask for support! +

+

+ + Type: Primary Support + +

+ GitHub +
+
+
+ + +
+ +
+
+

+ +

+
+ +
+ +

Reddit

+
+

+ For aliens only! Please read the rules, be courteous, and use the appropriate + flair when posting. Provide your logs when asking for help. +

+

+ + Type: Community Support + +

+ Reddit +
+
+
+ + +
+
+
+

+ +

+
+ +
+ +

Facebook Group

+
+

+ Our official Facebook group. This is best for simple questions. + Please read the rules, and be courteous when posting. +

+

+ + Type: Community Support + +

+ Facebook group +
+
+
+ +
diff --git a/tags.html b/tags.html new file mode 100644 index 00000000..d9fc6e61 --- /dev/null +++ b/tags.html @@ -0,0 +1,38 @@ +--- +layout: page +title: 'Blog Index' +css: + - "/assets/css/show-search.css" +--- + +{% assign date_format = site.date_format | default: "%B %-d, %Y" %} + +{%- capture site_tags -%} + {%- for tag in site.tags -%} + {{- tag | first -}}{%- unless forloop.last -%},{%- endunless -%} + {%- endfor -%} +{%- endcapture -%} +{%- assign tags_list = site_tags | split:',' | sort -%} + +{%- for tag in tags_list -%} +  {{- tag -}} ({{site.tags[tag].size}}) +{%- endfor -%} + +
+{%- for tag in tags_list -%} +

+ +  {{- tag -}} ({{site.tags[tag].size}}) +

+
+ {%- for post in site.tags[tag] -%} +
+ {{- post.title | strip_html -}} + +
+ {%- endfor -%} +
+{%- endfor -%} +
diff --git a/terms.md b/terms.md new file mode 100644 index 00000000..b1c015d0 --- /dev/null +++ b/terms.md @@ -0,0 +1,120 @@ +--- +layout: page +title: LizardByte | Terms +--- + + + + +# Welcome to LizardByte + +These terms of service outline the rules and regulations for the use of LizardByte's Website. + +By accessing this website we assume you accept these terms of service in full. Do not continue to use LizardByte's +website if you do not accept all the terms of service stated on this page. + +The following terminology applies to these Terms of Service, Privacy Statement and Disclaimer Notice and any or all +Agreements: "Client", "You" and "Your" refers to you, the person accessing this website and accepting the Company's +terms of service. "The Company", "Ourselves", "We", "Our" and "Us", refers to our Company. "Party", "Parties", or "Us", +refers to both the Client and ourselves, or either the Client or ourselves. All terms refer to the offer, acceptance +and consideration of payment necessary to undertake the process of our assistance to the Client in the most appropriate +manner, whether by formal meetings of a fixed duration, or any other means, for the express purpose of meeting the +Client's needs in respect of provision of the Company's stated services/products, in accordance with and subject to, +prevailing law of . Any use of the above terminology or other words in the singular, plural, capitalisation and/or +he/she or they, are taken as interchangeable and therefore as referring to same. + +## Cookies + +We employ the use of cookies. By using LizardByte's website you consent to the use of cookies in accordance with +LizardByte's privacy policy. + +Most of the modern day interactive websites use cookies to enable us to retrieve user details for each visit. Cookies +are used in some areas of our site to enable the functionality of this area and ease of use for those people visiting. +Some of our affiliate / advertising partners may also use cookies. + +## License + +Unless otherwise stated, LizardByte and/or it's licensors own the intellectual property rights for all material on +LizardByte. All intellectual property rights are reserved. You may view and/or print pages from +https://app.lizardbyte.dev for your own personal use subject to restrictions set in these terms of service. + +You must not: + +* Republish material from https://app.lizardbyte.dev +* Sell, rent or sublicense material from https://app.lizardbyte.dev +* Reproduce, duplicate or copy material from https://app.lizardbyte.dev + +Redistribute content from LizardByte (unless content is specifically made for redistribution). + +## User Comments + +* This Agreement shall begin on the date hereof. +* Certain parts of this website offer the opportunity for users to post and exchange opinions, information, material + and data ('Comments') in areas of the website. LizardByte does not screen, edit, publish or review Comments prior + to their appearance on the website and Comments do not reflect the views or opinions ofLizardByte, its agents or + affiliates. Comments reflect the view and opinion of the person who posts such view or opinion. To the extent + permitted by applicable laws LizardByte shall not be responsible or liable for the Comments or for any loss cost, + liability, damages or expenses caused and or suffered as a result of any use of and/or posting of and/or appearance + of the Comments on this website. +* LizardByte reserves the right to monitor all Comments and to remove any Comments which it considers in its absolute + discretion to be inappropriate, offensive or otherwise in breach of these Terms of Service. +* You warrant and represent that: + + - You are entitled to post the Comments on our website and have all necessary licenses and consents to do so; + - The Comments do not infringe any intellectual property right, including without limitation copyright, patent or + trademark, or other proprietary right of any third party; + - The Comments do not contain any defamatory, libelous, offensive, indecent or otherwise unlawful material or + material which is an invasion of privacy + - The Comments will not be used to solicit or promote business or custom or present commercial activities or + unlawful activity. + +* You hereby grant to LizardByte a non-exclusive royalty-free license to use, reproduce, edit and authorize others to + use, reproduce and edit any of your Comments in any and all forms, formats or media. + +## Iframes + +Without prior approval and express written permission, you may not create frames around our Web pages or use other +techniques that alter in any way the visual presentation or appearance of our Website. + +## Reservation of Rights + +We reserve the right at any time and in its sole discretion to request that you remove all links or any particular +link to our Website. You agree to immediately remove all links to our Website upon such request. We also reserve the +right to amend these terms of service and its linking policy at any time. By continuing to link to our Website, you +agree to be bound to and abide by these linking terms of service. + +## Removal of links from our website + +If you find any link on our Website or any linked website objectionable for any reason, you may contact us about this. +We will consider requests to remove links but will have no obligation to do so or to respond directly to you. + +Whilst we endeavour to ensure that the information on this website is correct, we do not warrant its completeness or +accuracy; nor do we commit to ensuring that the website remains available or that the material on the website is kept +up to date. + +## Content Liability + +We shall have no responsibility or liability for any content appearing on your Website. You agree to indemnify and +defend us against all claims arising out of or based upon your Website. No link(s) may appear on any page on your +Website or within any context containing content or materials that may be interpreted as libelous, obscene or criminal, +or which infringes, otherwise violates, or advocates the infringement or other violation of, any third party rights. + +## Disclaimer + +To the maximum extent permitted by applicable law, we exclude all representations, warranties and conditions relating +to our website and the use of this website (including, without limitation, any warranties implied by law in respect of +satisfactory quality, fitness for purpose and/or the use of reasonable care and skill). +Nothing in this disclaimer will: + +* limit or exclude our or your liability for death or personal injury resulting from negligence; +* limit or exclude our or your liability for fraud or fraudulent misrepresentation; +* limit any of our or your liabilities in any way that is not permitted under applicable law; or +* exclude any of our or your liabilities that may not be excluded under applicable law. + +The limitations and exclusions of liability set out in this Section and elsewhere in this disclaimer: (a) are subject +to the preceding paragraph; and (b) govern all liabilities arising under the disclaimer or in relation to the subject +matter of this disclaimer, including liabilities arising in contract, in tort (including negligence) and for breach +of statutory duty. + +To the extent that the website and the information and services on the website are provided free of charge, we will +not be liable for any loss or damage of any nature.