-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(build): use jekyll and restyle website
- Loading branch information
1 parent
dfccc6c
commit 28bb100
Showing
62 changed files
with
1,311 additions
and
1,550 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# ignore hidden files | ||
.* | ||
|
||
_site/ |
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,3 @@ | ||
# ensure dockerfiles are checked out with LF line endings | ||
Dockerfile text eol=lf | ||
*.dockerfile text eol=lf |
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,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/ |
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,20 @@ | ||
<component name="ProjectRunConfigurationManager"> | ||
<configuration default="false" name="Dockerfile" type="docker-deploy" factoryName="dockerfile" server-name="Docker"> | ||
<deployment type="dockerfile"> | ||
<settings> | ||
<option name="containerName" value="" /> | ||
<option name="portBindings"> | ||
<list> | ||
<DockerPortBindingImpl> | ||
<option name="containerPort" value="4000" /> | ||
<option name="hostPort" value="4000" /> | ||
</DockerPortBindingImpl> | ||
</list> | ||
</option> | ||
<option name="commandLineOptions" value="--net=host" /> | ||
<option name="sourceFilePath" value="Dockerfile" /> | ||
</settings> | ||
</deployment> | ||
<method v="2" /> | ||
</configuration> | ||
</component> |
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,13 @@ | ||
--- | ||
layout: default | ||
title: 404 - Page not found | ||
permalink: /404.html | ||
--- | ||
|
||
<div class="text-center"> | ||
<h1>Whoops, this page doesn't exist.</h1> | ||
<h1>Move along. (404 error)</h1> | ||
<br/> | ||
|
||
<img src="{{ 'assets/img/404-southpark.jpg' | relative_url }}" alt="Not found" /> | ||
</div> |
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 @@ | ||
app.lizardbyte.dev |
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,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"] |
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,3 @@ | ||
source 'https://rubygems.org' | ||
gem 'jekyll' | ||
gem 'github-pages', group: :jekyll_plugins |
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,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) |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.