-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
220 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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,17 @@ | ||
FROM ruby:3.3.4 | ||
|
||
# Install Bundler & Jekyll | ||
RUN set -eux; gem install jekyll bundler | ||
|
||
# Clean up | ||
WORKDIR /srv/jekyll | ||
|
||
EXPOSE 4000 | ||
EXPOSE 35729 | ||
|
||
RUN set -eux; \ | ||
apt-get update; \ | ||
apt-get install -y --no-install-recommends bash | ||
|
||
COPY docs/Gemfile ./ | ||
RUN set -eux; bundle install |
File renamed without changes.
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,6 @@ | ||
_site | ||
.sass-cache | ||
.jekyll-cache | ||
.jekyll-metadata | ||
vendor | ||
Gemfile.lock |
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,24 @@ | ||
--- | ||
permalink: /404.html | ||
--- | ||
|
||
<style type="text/css" media="screen"> | ||
.container { | ||
margin: 10px auto; | ||
max-width: 600px; | ||
text-align: center; | ||
} | ||
h1 { | ||
margin: 30px 0; | ||
font-size: 4em; | ||
line-height: 1; | ||
letter-spacing: -1px; | ||
} | ||
</style> | ||
|
||
<div class="container"> | ||
<h1>404</h1> | ||
|
||
<p><strong>Page not found :(</strong></p> | ||
<p>The requested page could not be found.</p> | ||
</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,55 @@ | ||
source "https://rubygems.org" | ||
|
||
# In sync with https://pages.github.com/versions/ | ||
|
||
gem "github-pages", "~> 232", group: :jekyll_plugins | ||
|
||
gem "jemoji", "~>0.13.0" | ||
gem "kramdown-parser-gfm", "~>1.1.0" | ||
gem "kramdown", "~>2.4.0" | ||
gem "liquid", "~>4.0.4" | ||
gem "minima", "~>2.5.1" | ||
gem "nokogiri", "~>1.16.7" | ||
gem "rouge", "~>3.30.0" | ||
gem "safe_yaml", "~>1.0.5" | ||
gem "sass", "~>3.7.4" | ||
|
||
# If you have any plugins, put them here! | ||
group :jekyll_plugins do | ||
gem "jekyll-avatar", "~> 0.8.0" | ||
gem "jekyll-coffeescript", "~> 1.2.2" | ||
gem "jekyll-commonmark-ghpages", "~> 0.5.1" | ||
gem "jekyll-default-layout", "~> 0.1.5" | ||
gem "jekyll-feed", "~> 0.17.0" | ||
gem "jekyll-gist", "~> 1.5.0" | ||
gem "jekyll-github-metadata", "~> 2.16.1" | ||
gem "jekyll-include-cache", "~> 0.2.1" | ||
gem "jekyll-mentions", "~> 1.6.0" | ||
gem "jekyll-optional-front-matter", "~> 0.3.2" | ||
gem "jekyll-paginate", "~> 1.1.0" | ||
gem "jekyll-readme-index", "~> 0.3.0" | ||
gem "jekyll-redirect-from", "~> 0.16.0" | ||
gem "jekyll-relative-links", "~> 0.6.1" | ||
gem "jekyll-remote-theme", "~> 0.4.3" | ||
gem "jekyll-sass-converter", "~> 1.5.2" | ||
gem "jekyll-seo-tag", "~> 2.8.0" | ||
gem "jekyll-sitemap", "~> 1.4.0" | ||
gem "jekyll-swiss", "~> 1.0.0" | ||
gem "jekyll-theme-architect", "~> 0.2.0" | ||
gem "jekyll-theme-cayman", "~> 0.2.0" | ||
gem "jekyll-theme-dinky", "~> 0.2.0" | ||
gem "jekyll-theme-hacker", "~> 0.2.0" | ||
gem "jekyll-theme-leap-day", "~> 0.2.0" | ||
gem "jekyll-theme-merlot", "~> 0.2.0" | ||
gem "jekyll-theme-midnight", "~> 0.2.0" | ||
gem "jekyll-theme-minimal", "~> 0.2.0" | ||
gem "jekyll-theme-modernist", "~> 0.2.0" | ||
gem "jekyll-theme-primer", "~> 0.6.0" | ||
gem "jekyll-theme-slate", "~> 0.2.0" | ||
gem "jekyll-theme-tactile", "~> 0.2.0" | ||
gem "jekyll-theme-time-machine", "~> 0.2.0" | ||
gem "jekyll-titles-from-headings", "~> 0.5.3" | ||
end | ||
|
||
# Additional | ||
gem "just-the-docs" |
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,58 @@ | ||
title: Siglot | ||
description: >- # this means to ignore newlines until "baseurl:" | ||
Signals and Slots library for PHP | ||
baseurl: "" # the subpath of your site, e.g. /blog | ||
url: "" # the base hostname & protocol for your site, e.g. http://example.com | ||
twitter_username: b_viguier | ||
github_username: b-viguier | ||
|
||
# Build settings | ||
theme: just-the-docs | ||
plugins: | ||
- jekyll-feed | ||
|
||
# Exclude from processing. | ||
# The following items will not be processed, by default. | ||
# Any item listed under the `exclude:` key here will be automatically added to | ||
# the internal "default list". | ||
# | ||
# Excluded items can be processed by explicitly listing the directories or | ||
# their entries' file path in the `include:` list. | ||
# | ||
# exclude: | ||
# - .sass-cache/ | ||
# - .jekyll-cache/ | ||
# - gemfiles/ | ||
# - Gemfile | ||
# - Gemfile.lock | ||
# - node_modules/ | ||
# - vendor/bundle/ | ||
# - vendor/cache/ | ||
# - vendor/gems/ | ||
# - vendor/ruby/ | ||
|
||
# Just The Docs settings | ||
callouts: | ||
warning: | ||
title: Warning | ||
color: red | ||
color_scheme: dark | ||
# Footer last edited timestamp | ||
last_edit_timestamp: true # show or hide edit time - page must have `last_modified_date` defined in the frontmatter | ||
last_edit_time_format: "%b %e %Y at %I:%M %p" # uses ruby's time format: https://ruby-doc.org/stdlib-2.7.0/libdoc/time/rdoc/Time.html | ||
# Footer "Edit this page on GitHub" link text | ||
gh_edit_link: true # show or hide edit this page link | ||
gh_edit_link_text: "Edit this page on GitHub." | ||
gh_edit_repository: "https://github.com/b-viguier/Siglot" # the github URL for your repo | ||
gh_edit_branch: "main" # the branch that your docs is served from | ||
gh_edit_source: docs # the source that your files originate from | ||
gh_edit_view_mode: "edit" # "tree" or "edit" if you want the user to jump into the editor immediately | ||
aux_links: | ||
Siglot on GitHub: | ||
- https://github.com/b-viguier/Siglot | ||
back_to_top: true | ||
back_to_top_text: "Back to top" | ||
|
||
|
||
|
||
|
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,16 @@ | ||
--- | ||
title: Getting Started | ||
permalink: /getting_started | ||
nav_order: 2 | ||
--- | ||
|
||
* TOC | ||
{:toc} | ||
|
||
## Installation | ||
|
||
To install Siglot, you can use [Composer](https://getcomposer.org/): | ||
|
||
```bash | ||
composer require b-viguier/siglot | ||
``` |
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 @@ | ||
--- | ||
title: Introduction | ||
nav_order: 1 | ||
--- |
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,5 @@ | ||
--- | ||
title: Signals & Slots | ||
nav_order: 3 | ||
permalink: /signals_slots | ||
--- |