Compare commits
38 Commits
ea91c51e98
...
main
Author | SHA1 | Date | |
---|---|---|---|
0d00ef6eab | |||
f1a3d90310 | |||
efa658b85e | |||
cac2dcc244 | |||
f291f8b2cb | |||
ad7b2b21a3 | |||
61e2d5ee13 | |||
db28ff86c9 | |||
7a8d75abda | |||
d827a13d66 | |||
50d2188054 | |||
6852f439fc | |||
e1e6892cc0 | |||
c68b1485f3 | |||
91e6ddbbfb | |||
e42fb3675a | |||
c46e137c70 | |||
472fd41442 | |||
8431805ef6 | |||
523a79ff2f | |||
97bbc26576 | |||
eb6bb7e3eb | |||
11d0d14a71 | |||
ed37f7e62d | |||
1391225827 | |||
a70676d5b8 | |||
62c2253017 | |||
c1d263135f | |||
ed2009cf17 | |||
650466a5e3 | |||
3adaef3b48 | |||
d65c2b67c9 | |||
41f0c4bab2 | |||
dfc6250da7 | |||
2721e01bd4 | |||
70900e1bdd | |||
da600373c5 | |||
cb1370a7df |
8
.changeset/README.md
Normal file
8
.changeset/README.md
Normal file
@ -0,0 +1,8 @@
|
||||
# Changesets
|
||||
|
||||
Hello and welcome! This folder has been automatically generated by `@changesets/cli`, a build tool that works
|
||||
with multi-package repos, or single-package repos to help you version and publish your code. You can
|
||||
find the full documentation for it [in our repository](https://github.com/changesets/changesets)
|
||||
|
||||
We have a quick list of common questions to get you started engaging with this project in
|
||||
[our documentation](https://github.com/changesets/changesets/blob/main/docs/common-questions.md)
|
11
.changeset/config.json
Normal file
11
.changeset/config.json
Normal file
@ -0,0 +1,11 @@
|
||||
{
|
||||
"$schema": "https://unpkg.com/@changesets/config@3.0.0/schema.json",
|
||||
"changelog": ["@changesets/changelog-github", { "repo": "gethyas/doks" }],
|
||||
"commit": false,
|
||||
"fixed": [],
|
||||
"linked": [],
|
||||
"access": "restricted",
|
||||
"baseBranch": "main",
|
||||
"updateInternalDependencies": "patch",
|
||||
"ignore": []
|
||||
}
|
65
.drone.yml
65
.drone.yml
@ -10,6 +10,18 @@ kind: secret
|
||||
name: P4PILLON_AWS_SECRET_ACCESS_KEY
|
||||
data: 58Boc2Ux7MKwvh1nHh2xmY4JEje5CyX0/H/z6tM/ehLD1m4WQKblvc/+PX0DcaFqX86JPG8osLRsglkP9pyW7iH5WwuMQcXR/NzOAJioO+xgrh/14qUCYe+N5Yc=
|
||||
|
||||
---
|
||||
# drone encrypt ResiLien/portails $AWS_ACCESS_KEY_ID
|
||||
kind: secret
|
||||
name: AVECSANTE_AWS_ACCESS_KEY_ID
|
||||
data: rUOCGGdDsjg1Gm47adIOLuGeLGXP6ol50Y/yVotOBp6xMoNacWw2ynsW8O2ZU8OeWQnkeS8I
|
||||
|
||||
---
|
||||
# drone encrypt ResiLien/portails $AWS_SECRET_ACCESS_KEY
|
||||
kind: secret
|
||||
name: AVECSANTE_AWS_SECRET_ACCESS_KEY
|
||||
data: 4gfziKrS0aNdVlvHliNd5M94DWvA2PZC1YztmJxULONHtl/dXIDUEg9bhxzXFMWUqfR6dh9ep2FMTsOCwgdWISByzUzBVkHiyayXMMNaU4kr11HrWUlf6qkyF0c=
|
||||
|
||||
---
|
||||
# drone encrypt ResiLien/portails $AWS_ACCESS_KEY_ID
|
||||
kind: secret
|
||||
@ -65,6 +77,25 @@ steps:
|
||||
- hugo --minify --environment apps.p4pillon.org
|
||||
- hugo deploy --environment apps.p4pillon.org
|
||||
|
||||
---
|
||||
kind: pipeline
|
||||
type: docker
|
||||
name: AVECsanté
|
||||
|
||||
steps:
|
||||
- name: Installation des dépendances & construction du site
|
||||
image: hugomods/hugo:exts-0.123.8
|
||||
environment:
|
||||
AWS_ACCESS_KEY_ID:
|
||||
from_secret: AVECSANTE_AWS_ACCESS_KEY_ID
|
||||
AWS_SECRET_ACCESS_KEY:
|
||||
from_secret: AVECSANTE_AWS_SECRET_ACCESS_KEY
|
||||
commands:
|
||||
- npm install --ignore-scripts
|
||||
- hugo --minify --environment avecsante.app
|
||||
- hugo --minify --environment avecsante.app
|
||||
- hugo deploy --environment avecsante.app
|
||||
|
||||
---
|
||||
kind: pipeline
|
||||
type: docker
|
||||
@ -103,21 +134,21 @@ steps:
|
||||
- hugo --minify --environment cremeaux.org
|
||||
- hugo deploy --environment cremeaux.org
|
||||
|
||||
---
|
||||
kind: pipeline
|
||||
type: docker
|
||||
name: RésiLien
|
||||
# ---
|
||||
# kind: pipeline
|
||||
# type: docker
|
||||
# name: RésiLien
|
||||
|
||||
steps:
|
||||
- name: Installation des dépendances & construction du site
|
||||
image: hugomods/hugo:exts-0.123.8
|
||||
environment:
|
||||
AWS_ACCESS_KEY_ID:
|
||||
from_secret: CREMEAUX_AWS_ACCESS_KEY_ID
|
||||
AWS_SECRET_ACCESS_KEY:
|
||||
from_secret: CREMEAUX_AWS_SECRET_ACCESS_KEY
|
||||
commands:
|
||||
- npm install --ignore-scripts
|
||||
- hugo --minify --environment staging.resilien.fr
|
||||
- hugo --minify --environment staging.resilien.fr
|
||||
- hugo deploy --environment staging.resilien.fr
|
||||
# steps:
|
||||
# - name: Installation des dépendances & construction du site
|
||||
# image: hugomods/hugo:exts-0.123.8
|
||||
# environment:
|
||||
# AWS_ACCESS_KEY_ID:
|
||||
# from_secret: CREMEAUX_AWS_ACCESS_KEY_ID
|
||||
# AWS_SECRET_ACCESS_KEY:
|
||||
# from_secret: CREMEAUX_AWS_SECRET_ACCESS_KEY
|
||||
# commands:
|
||||
# - npm install --ignore-scripts
|
||||
# - hugo --minify --environment staging.resilien.fr
|
||||
# - hugo --minify --environment staging.resilien.fr
|
||||
# - hugo deploy --environment staging.resilien.fr
|
||||
|
@ -1,11 +0,0 @@
|
||||
# editorconfig.org
|
||||
|
||||
root = true
|
||||
|
||||
[*]
|
||||
indent_style = space
|
||||
indent_size = 2
|
||||
end_of_line = lf
|
||||
charset = utf-8
|
||||
trim_trailing_whitespace = true
|
||||
insert_final_newline = true
|
@ -1 +0,0 @@
|
||||
node_modules
|
@ -1,31 +0,0 @@
|
||||
{
|
||||
"env": {
|
||||
"browser": true,
|
||||
"commonjs": true,
|
||||
"es6": true,
|
||||
"node": true
|
||||
},
|
||||
"extends": "eslint:recommended",
|
||||
"globals": {
|
||||
"Atomics": "readonly",
|
||||
"SharedArrayBuffer": "readonly"
|
||||
},
|
||||
"parserOptions": {
|
||||
"ecmaVersion": 2018,
|
||||
"sourceType": "module"
|
||||
},
|
||||
"rules": {
|
||||
"no-console": 0,
|
||||
"quotes": ["error", "single"],
|
||||
"comma-dangle": [
|
||||
"error",
|
||||
{
|
||||
"arrays": "always-multiline",
|
||||
"objects": "always-multiline",
|
||||
"imports": "always-multiline",
|
||||
"exports": "always-multiline",
|
||||
"functions": "ignore"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
1
.github/ISSUE_TEMPLATE/bug_report.md
vendored
1
.github/ISSUE_TEMPLATE/bug_report.md
vendored
@ -1,7 +1,6 @@
|
||||
---
|
||||
name: "\U0001F41B Bug report"
|
||||
about: Report an issue or possible bug
|
||||
|
||||
---
|
||||
|
||||
## Description
|
||||
|
12
.github/ISSUE_TEMPLATE/config.yml
vendored
12
.github/ISSUE_TEMPLATE/config.yml
vendored
@ -1,7 +1,7 @@
|
||||
contact_links:
|
||||
- name: 📘 Documentation
|
||||
url: https://github.com/gethyas/getdoks.org
|
||||
about: File an issue or make an improvement to the Doks website.
|
||||
- name: 💁 Support
|
||||
url: https://github.com/gethyas/doks/discussions
|
||||
about: 'Get help on Doks Discussions'
|
||||
- name: 📘 Documentation
|
||||
url: https://github.com/gethyas/getdoks.org
|
||||
about: File an issue or make an improvement to the Doks website.
|
||||
- name: 💁 Support
|
||||
url: https://github.com/gethyas/doks/discussions
|
||||
about: 'Get help on Doks Discussions'
|
||||
|
1
.github/ISSUE_TEMPLATE/feature_request.md
vendored
1
.github/ISSUE_TEMPLATE/feature_request.md
vendored
@ -1,7 +1,6 @@
|
||||
---
|
||||
name: "\U0001F4A1 Feature request "
|
||||
about: Propose and discuss future improvements to Doks
|
||||
|
||||
---
|
||||
|
||||
## Summary
|
||||
|
38
.github/workflows/hyas-ci.yml
vendored
38
.github/workflows/hyas-ci.yml
vendored
@ -1,38 +0,0 @@
|
||||
name: Hyas CI
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: main
|
||||
pull_request:
|
||||
branches: main
|
||||
|
||||
jobs:
|
||||
build:
|
||||
name: "Build: ${{ matrix.os }}"
|
||||
runs-on: ${{ matrix.os }}
|
||||
timeout-minutes: 3
|
||||
strategy:
|
||||
matrix:
|
||||
os: [ubuntu-latest, windows-latest, macos-latest]
|
||||
node-version: [18.x, 20.x]
|
||||
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: Setup node@${{ matrix.node-version }}
|
||||
uses: actions/setup-node@v3
|
||||
with:
|
||||
node-version: ${{ matrix.node-version }}
|
||||
|
||||
- name: Install dependencies
|
||||
run: npm ci
|
||||
|
||||
- name: Run linters
|
||||
run: npm run lint --if-present
|
||||
|
||||
- name: Build site
|
||||
run: npm run build
|
||||
|
||||
# - name: Run tests
|
||||
# run: npm test --if-present
|
4
.gitignore
vendored
4
.gitignore
vendored
@ -1,8 +1,6 @@
|
||||
.eslintcache
|
||||
.stylelintcache
|
||||
.env
|
||||
.netlify
|
||||
.hugo_build.lock
|
||||
yarn-error.log
|
||||
node_modules
|
||||
public
|
||||
resources
|
||||
|
17
.gitpod.yml
17
.gitpod.yml
@ -1,12 +1,13 @@
|
||||
# Source:
|
||||
# - https://github.com/gitpod-io/template-hugo
|
||||
# - https://www.gitpod.io/docs/configure/workspaces/tasks#one-line-tasks
|
||||
# Source: https://github.com/gitpod-io/template-hugo/blob/main/.gitpod.yml
|
||||
|
||||
# List the start up tasks. Learn more https://www.gitpod.io/docs/config-start-tasks/
|
||||
tasks:
|
||||
- name: Run development server
|
||||
init: pnpm install
|
||||
command: pnpm dev
|
||||
- name: Run start up tasks
|
||||
before: brew install hugo
|
||||
init: pnpm install
|
||||
command: hugo server --baseURL $(gp url 1313) --liveReloadPort=443 --appendPort=false --bind=0.0.0.0 --disableFastRender --noHTTPCache --navigateToChanged
|
||||
|
||||
# List the ports to expose. Learn more https://www.gitpod.io/docs/config-ports/
|
||||
ports:
|
||||
- port: 1313
|
||||
onOpen: open-preview
|
||||
- port: 1313
|
||||
onOpen: open-preview
|
||||
|
87
.gramma.json
Normal file
87
.gramma.json
Normal file
@ -0,0 +1,87 @@
|
||||
{
|
||||
"api_url": "https://api.languagetool.org/v2/check",
|
||||
"api_key": "",
|
||||
"dictionary": [
|
||||
"Agola",
|
||||
"Ansible",
|
||||
"Authelia",
|
||||
"CRUD",
|
||||
"Concourse",
|
||||
"Connect",
|
||||
"Constans",
|
||||
"Crémeaux",
|
||||
"Directus",
|
||||
"Duphot",
|
||||
"EIMIS",
|
||||
"Framalibre",
|
||||
"Grap",
|
||||
"HedgeDoc",
|
||||
"Hedgedoc",
|
||||
"Hetzner",
|
||||
"Illyse",
|
||||
"IndieHosters",
|
||||
"Keepass",
|
||||
"Kemps",
|
||||
"LDAP",
|
||||
"LaMelio",
|
||||
"Libenume",
|
||||
"Listmonk",
|
||||
"Lydra",
|
||||
"MacOS",
|
||||
"Meliora",
|
||||
"Metabase",
|
||||
"Metroline",
|
||||
"NextCloud",
|
||||
"Nubo",
|
||||
"OpenID",
|
||||
"P4Pillon",
|
||||
"Picasoft",
|
||||
"REST",
|
||||
"RésiLien",
|
||||
"SSO",
|
||||
"Scaleway",
|
||||
"TeDomum",
|
||||
"Techologie",
|
||||
"Tedomum",
|
||||
"Typescript",
|
||||
"Vaultwarden",
|
||||
"Vikunja",
|
||||
"WYSIWYG",
|
||||
"Weko",
|
||||
"Whatsapp",
|
||||
"appveyor",
|
||||
"directus",
|
||||
"gitea",
|
||||
"hedgedoc",
|
||||
"listmonk",
|
||||
"markdown",
|
||||
"metabase",
|
||||
"mobilizon",
|
||||
"nextcloud",
|
||||
"root",
|
||||
"signaturepdf",
|
||||
"stack",
|
||||
"vaultwarden",
|
||||
"vikunja",
|
||||
"webhooks"
|
||||
],
|
||||
"language": "fr",
|
||||
"rules": {
|
||||
"casing": true,
|
||||
"colloquialisms": true,
|
||||
"compounding": true,
|
||||
"confused_words": true,
|
||||
"false_friends": true,
|
||||
"gender_neutrality": true,
|
||||
"grammar": true,
|
||||
"misc": true,
|
||||
"punctuation": true,
|
||||
"redundancy": true,
|
||||
"regionalisms": true,
|
||||
"repetitions": true,
|
||||
"semantics": true,
|
||||
"style": true,
|
||||
"typography": true,
|
||||
"typos": true
|
||||
}
|
||||
}
|
@ -1,14 +0,0 @@
|
||||
{
|
||||
"config": {
|
||||
"default": true,
|
||||
"MD013": false,
|
||||
"MD022": false,
|
||||
"MD024": false,
|
||||
"MD025": false,
|
||||
"MD026": false,
|
||||
"MD033": false,
|
||||
"MD034": false,
|
||||
"MD036": false
|
||||
},
|
||||
"ignores": ["node_modules", "CHANGELOG.md", "README.md"]
|
||||
}
|
8
.npmrc
8
.npmrc
@ -1,4 +1,4 @@
|
||||
enable-pre-post-scripts = true
|
||||
auto-install-peers = true
|
||||
node-linker = hoisted
|
||||
prefer-symlinked-executables = false
|
||||
enable-pre-post-scripts=true
|
||||
auto-install-peers=true
|
||||
node-linker=hoisted
|
||||
prefer-symlinked-executables=false
|
||||
|
12
.prettierignore
Normal file
12
.prettierignore
Normal file
@ -0,0 +1,12 @@
|
||||
*.html
|
||||
*.ico
|
||||
*.png
|
||||
*.jp*g
|
||||
*.toml
|
||||
*.*ignore
|
||||
*.svg
|
||||
*.xml
|
||||
LICENSE
|
||||
.npmrc
|
||||
.gitkeep
|
||||
*.woff*
|
19
.prettierrc.yaml
Normal file
19
.prettierrc.yaml
Normal file
@ -0,0 +1,19 @@
|
||||
# Default config
|
||||
tabWidth: 4
|
||||
endOfLine: crlf
|
||||
singleQuote: true
|
||||
printWidth: 100000
|
||||
trailingComma: none
|
||||
bracketSameLine: true
|
||||
quoteProps: consistent
|
||||
experimentalTernaries: true
|
||||
|
||||
# Overrided config
|
||||
overrides:
|
||||
- files: ["*.md", "*.json", "*.yaml"]
|
||||
options:
|
||||
tabWidth: 2
|
||||
singleQuote: false
|
||||
- files: ["*.scss"]
|
||||
options:
|
||||
singleQuote: false
|
@ -1,2 +0,0 @@
|
||||
assets/scss/common/_variables-custom.scss
|
||||
node_modules
|
@ -1,35 +0,0 @@
|
||||
{
|
||||
"extends": "stylelint-config-standard-scss",
|
||||
"rules": {
|
||||
"no-empty-source": null,
|
||||
"scss/comment-no-empty": null,
|
||||
"scss/at-extend-no-missing-placeholder": null,
|
||||
"at-rule-no-unknown": [
|
||||
true,
|
||||
{
|
||||
"ignoreAtRules": [
|
||||
"extend",
|
||||
"at-root",
|
||||
"debug",
|
||||
"warn",
|
||||
"error",
|
||||
"if",
|
||||
"else",
|
||||
"for",
|
||||
"each",
|
||||
"while",
|
||||
"mixin",
|
||||
"include",
|
||||
"content",
|
||||
"return",
|
||||
"function",
|
||||
"tailwind",
|
||||
"apply",
|
||||
"responsive",
|
||||
"variants",
|
||||
"screen"
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
3
.vscode/extensions.json
vendored
Normal file
3
.vscode/extensions.json
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
{
|
||||
"recommendations": ["budparr.language-hugo-vscode", "yzhang.markdown-all-in-one", "tamasfe.even-better-toml", "dbaeumer.vscode-eslint", "DavidAnson.vscode-markdownlint", "stylelint.vscode-stylelint"]
|
||||
}
|
7
.vscode/settings.json
vendored
Normal file
7
.vscode/settings.json
vendored
Normal file
@ -0,0 +1,7 @@
|
||||
{
|
||||
"editor.wordWrap": "off",
|
||||
"files.trimTrailingWhitespace": true,
|
||||
"files.insertFinalNewline": true,
|
||||
"editor.tabSize": 2,
|
||||
"editor.insertSpaces": true
|
||||
}
|
610
CHANGELOG.md
610
CHANGELOG.md
@ -1,609 +1,25 @@
|
||||
### Changelog
|
||||
# doks
|
||||
|
||||
All notable changes to this project will be documented in this file. Dates are displayed in UTC.
|
||||
## 1.6.2
|
||||
|
||||
Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
||||
### Patch Changes
|
||||
|
||||
#### [v1.4.1](https://github.com/gethyas/doks/compare/v1.4.0...v1.4.1)
|
||||
- [#1230](https://github.com/gethyas/doks/pull/1230) [`25f55a3`](https://github.com/gethyas/doks/commit/25f55a37fa4162b7546d6ded9b449434e4965164) Thanks [@h-enk](https://github.com/h-enk)! - Install prettier and vite as devDependencies
|
||||
|
||||
- deps: bump hugo from v0.123.6 to v0.123.7 [`64fab20`](https://github.com/gethyas/doks/commit/64fab200283a0dc090f18e6ebc6c76ea1184716c)
|
||||
## 1.6.1
|
||||
|
||||
#### [v1.4.0](https://github.com/gethyas/doks/compare/v1.3.0...v1.4.0)
|
||||
### Patch Changes
|
||||
|
||||
> 1 March 2024
|
||||
- [#1229](https://github.com/gethyas/doks/pull/1229) [`7666ab6`](https://github.com/gethyas/doks/commit/7666ab62a9b04f0508530dfb8c7f5f7c6db0f966) Thanks [@h-enk](https://github.com/h-enk)! - Add gethyas dependency
|
||||
|
||||
- feat: update for @hyas/doks-core v1.4.0 [`c177c10`](https://github.com/gethyas/doks/commit/c177c10daaca12e4ee5a9190c95969fbc7cdf989)
|
||||
- meta: update CHANGELOG.md [`9026d13`](https://github.com/gethyas/doks/commit/9026d135a859c1e3fc6aba8db3fbc27ce474ea08)
|
||||
- config: update .npmignore [`d33d5b6`](https://github.com/gethyas/doks/commit/d33d5b6b2268b8ddb36d3ad9eaaa000faf75c2cd)
|
||||
## 1.6.0
|
||||
|
||||
#### [v1.3.0](https://github.com/gethyas/doks/compare/v1.2.0...v1.3.0)
|
||||
### Minor Changes
|
||||
|
||||
> 11 January 2024
|
||||
- [#1228](https://github.com/gethyas/doks/pull/1228) [`4be4a68`](https://github.com/gethyas/doks/commit/4be4a689619b49f62df4c65024d3e865c1ead99e) Thanks [@h-enk](https://github.com/h-enk)! - Update dependencies to latest versions
|
||||
|
||||
- Restructures dependencies+ [`#1172`](https://github.com/gethyas/doks/pull/1172)
|
||||
- feat: restructure dependencies+ [`a6b7491`](https://github.com/gethyas/doks/commit/a6b74916fc898280687dac342b9b49995ff2502d)
|
||||
- meta: update templates GitHub [`1e0d1ff`](https://github.com/gethyas/doks/commit/1e0d1ffd677421a7edf3707d53ec1640d972da25)
|
||||
- meta: update CHANGELOG.md [`bdb5023`](https://github.com/gethyas/doks/commit/bdb5023cf64c10a74343f90b263096f49de5046f)
|
||||
## 1.5.0
|
||||
|
||||
#### [v1.2.0](https://github.com/gethyas/doks/compare/v1.1.1...v1.2.0)
|
||||
### Minor Changes
|
||||
|
||||
> 22 December 2023
|
||||
|
||||
- feat: update for doks-core 1.2.0 [`e847c26`](https://github.com/gethyas/doks/commit/e847c2656eddbf187b94adfe03d8904ce77d31db)
|
||||
- meta: update CHANGELOG.md [`d2db2b4`](https://github.com/gethyas/doks/commit/d2db2b4ff30d61acc959761954a4a7bdccb09d90)
|
||||
|
||||
#### [v1.1.1](https://github.com/gethyas/doks/compare/v1.1.0...v1.1.1)
|
||||
|
||||
> 27 October 2023
|
||||
|
||||
- meta: update CHANGELOG.md [`3572f7d`](https://github.com/gethyas/doks/commit/3572f7d148af2487d30bb41d180f484a6df4406d)
|
||||
- deps: bump @hyas/doks-core from 1.1.0 to 1.1.1 [`d5d5914`](https://github.com/gethyas/doks/commit/d5d591403d26c9429225b8f3bb093ac819019c64)
|
||||
- meta: update CHANGELOG.md [`e2ef90f`](https://github.com/gethyas/doks/commit/e2ef90fe8c3704a9e16f79850d53b88cd2624284)
|
||||
|
||||
#### [v1.1.0](https://github.com/gethyas/doks/compare/v1.0.3...v1.1.0)
|
||||
|
||||
> 19 October 2023
|
||||
|
||||
- deps: bumps @hyas/doks-core from 1.0.3 to 1.1.0 [`2763ac1`](https://github.com/gethyas/doks/commit/2763ac19ae942d9ec572ee64def66eb399efcd88)
|
||||
- meta: update CHANGELOG.md [`8b4501b`](https://github.com/gethyas/doks/commit/8b4501bd81d5a47176453774f79f59940544faab)
|
||||
|
||||
#### [v1.0.3](https://github.com/gethyas/doks/compare/v1.0.2...v1.0.3)
|
||||
|
||||
> 15 September 2023
|
||||
|
||||
- deps: bumps @hyas/doks-core from 1.0.6 to 1.0.7 [`313302a`](https://github.com/gethyas/doks/commit/313302aff1ad0019a95b4a96e7df59d406cea345)
|
||||
- meta: update CHANGELOG.md [`5597d82`](https://github.com/gethyas/doks/commit/5597d824b55a9e0e56d5aa7600aa2e82d58a5715)
|
||||
- config: update for #1093 [`6592269`](https://github.com/gethyas/doks/commit/6592269e3930038437b1f50f3472aaa7dc64de25)
|
||||
|
||||
#### [v1.0.2](https://github.com/gethyas/doks/compare/v1.0.1...v1.0.2)
|
||||
|
||||
> 14 September 2023
|
||||
|
||||
- feat: update @hyas/doks-core from 1.0.5 to 1.0.6 [`dae8845`](https://github.com/gethyas/doks/commit/dae8845430f68d9a569b276cd775b44e49c24124)
|
||||
- feat: add _custom.scss [`ad2d80e`](https://github.com/gethyas/doks/commit/ad2d80eb9e936681ba6c14594effcbd15661302f)
|
||||
- fix: clean contents _custom.scss [`08e852b`](https://github.com/gethyas/doks/commit/08e852b70aa61380057d46eb1c6c1d31642185a4)
|
||||
|
||||
#### [v1.0.1](https://github.com/gethyas/doks/compare/v1.0.0...v1.0.1)
|
||||
|
||||
> 11 September 2023
|
||||
|
||||
- deps: bumps @hyas/doks-core from 1.0.4 to 1.0.5 [`846f564`](https://github.com/gethyas/doks/commit/846f5640e2c04af96a21b27c8f85a7feeb0b9761)
|
||||
- meta: update CHANGELOG.md [`8ce76fd`](https://github.com/gethyas/doks/commit/8ce76fd28b7ec63330aca050d94dc942c3c61fe4)
|
||||
|
||||
### [v1.0.0](https://github.com/gethyas/doks/compare/v1.0.0-rc.2...v1.0.0)
|
||||
|
||||
> 8 September 2023
|
||||
|
||||
- Doks v1.0.0 [`#1043`](https://github.com/gethyas/doks/pull/1043)
|
||||
- feat: update for Doks 1.0 [`dfd5ee1`](https://github.com/gethyas/doks/commit/dfd5ee1d0d0954a39f619f605fca71192a997f84)
|
||||
- meta: update CHANGELOG.md [`b077f4e`](https://github.com/gethyas/doks/commit/b077f4e44653c121e928b32c9f663404394b2663)
|
||||
|
||||
#### [v1.0.0-rc.2](https://github.com/gethyas/doks/compare/v1.0.0-rc.1...v1.0.0-rc.2)
|
||||
|
||||
> 23 June 2023
|
||||
|
||||
- meta: Update for Hyas community health files [`a8ced3e`](https://github.com/gethyas/doks/commit/a8ced3e124050d666b0b61e52ea8d98e4b9da9c2)
|
||||
- meta: update CHANGELOG.md [`7fbc17e`](https://github.com/gethyas/doks/commit/7fbc17eb0caa7583899caf0eb5133eed2b114b17)
|
||||
|
||||
#### [v1.0.0-rc.1](https://github.com/gethyas/doks/compare/v1.0.0-beta.2...v1.0.0-rc.1)
|
||||
|
||||
> 17 June 2023
|
||||
|
||||
- switch to permissions-policy [`#1067`](https://github.com/gethyas/doks/pull/1067)
|
||||
- feat: update for Doks v1.0.0-rc.1 [`6e27b31`](https://github.com/gethyas/doks/commit/6e27b31ea7338a021952d89a7acea5cf1b42f626)
|
||||
- ops: add resources directory for faster workflow build [`2fdbeb5`](https://github.com/gethyas/doks/commit/2fdbeb549331d7131f145968278b5d8e48a2dd0d)
|
||||
- meta: update CHANGELOG.md [`f421b61`](https://github.com/gethyas/doks/commit/f421b614f09e26092af30a4dd2076b6f549c4973)
|
||||
|
||||
#### [v1.0.0-beta.2](https://github.com/gethyas/doks/compare/v1.0.0-beta.1...v1.0.0-beta.2)
|
||||
|
||||
> 9 June 2023
|
||||
|
||||
- feat: update for Doks v1.0.0-beta.2 [`9a3994f`](https://github.com/gethyas/doks/commit/9a3994f6950bd8406ea38668b7033ee056da0891)
|
||||
- meta: remove node.js-ci.yml workflow [`d14c659`](https://github.com/gethyas/doks/commit/d14c6596317c416e802b5ef706e9134791515c11)
|
||||
- meta: update CHANGELOG.md [`8397db9`](https://github.com/gethyas/doks/commit/8397db9f091a122a753dcf65a23cb5d1ffdc4c1f)
|
||||
|
||||
#### [v1.0.0-beta.1](https://github.com/gethyas/doks/compare/v1.0.0-alpha.2...v1.0.0-beta.1)
|
||||
|
||||
> 26 May 2023
|
||||
|
||||
- feat: update for doks 1.0.0-beta.1 [`f5135ba`](https://github.com/gethyas/doks/commit/f5135ba54ee22a08b75ff8a578d8600f3c6e25d9)
|
||||
- meta: update CHANGELOG.md [`f49f8f2`](https://github.com/gethyas/doks/commit/f49f8f2a23524633d444a58ad92e05cc309d3208)
|
||||
- meta: update CHANGELOG.md [`a45549e`](https://github.com/gethyas/doks/commit/a45549e3d980952da7b0e7ee0bdb60a1d2263c07)
|
||||
|
||||
#### [v1.0.0-alpha.2](https://github.com/gethyas/doks/compare/v1.0.0-alpha.1...v1.0.0-alpha.2)
|
||||
|
||||
> 23 May 2023
|
||||
|
||||
- ux: update dark mode+ [`834afc3`](https://github.com/gethyas/doks/commit/834afc3eec170d7e9a383f202742c62637b4cbb3)
|
||||
- config: update content security policy [`af107f0`](https://github.com/gethyas/doks/commit/af107f070b3815b463ac071cfad256dfc2d4c975)
|
||||
|
||||
#### [v1.0.0-alpha.1](https://github.com/gethyas/doks/compare/v0.5.0...v1.0.0-alpha.1)
|
||||
|
||||
> 18 April 2023
|
||||
|
||||
- fix: navbar-brand href now links to the BaseURL instead of `/` [`#894`](https://github.com/gethyas/doks/pull/894)
|
||||
- Update hugo to 0.107.0 and hugo-install to >=4.0.1 [`#951`](https://github.com/gethyas/doks/pull/951)
|
||||
- fix: build fails when figure has link [`#823`](https://github.com/gethyas/doks/pull/823)
|
||||
- fix: build fails when figure has link [`#820`](https://github.com/gethyas/doks/issues/820)
|
||||
- feat: update for doks v1.0.0-alpha.1 [`3d4c2db`](https://github.com/gethyas/doks/commit/3d4c2dbdffc9be1b6ea1a1e56e323f3deef2b9b7)
|
||||
- Update package-lock.json for hugo/hugo-install update [`afaba44`](https://github.com/gethyas/doks/commit/afaba443bf1509ce5ed53e48a06b2f97ec422902)
|
||||
- ops: update GitHub Actions [`e93a307`](https://github.com/gethyas/doks/commit/e93a3075bc2cff60b3680e40fe06d6ea28c05a9b)
|
||||
|
||||
#### [v0.5.0](https://github.com/gethyas/doks/compare/v0.4.3...v0.5.0)
|
||||
|
||||
> 9 July 2022
|
||||
|
||||
- Better multilingual support [`#818`](https://github.com/gethyas/doks/pull/818)
|
||||
- 🧪 Add scrollspy to toc pages as an option (experimental) [`#797`](https://github.com/gethyas/doks/pull/797)
|
||||
- Better blog pages [`#798`](https://github.com/gethyas/doks/pull/798)
|
||||
- Better image support [`#809`](https://github.com/gethyas/doks/pull/809)
|
||||
- feat(search): allow complete section customization [`#799`](https://github.com/gethyas/doks/pull/799)
|
||||
- fix(menus): sort pages and sections by default order [`#796`](https://github.com/gethyas/doks/pull/796)
|
||||
- Add to top button as an option [`#794`](https://github.com/gethyas/doks/pull/794)
|
||||
- Single navbar [`#782`](https://github.com/gethyas/doks/pull/782)
|
||||
- Use SVG favicon if it exists [`#754`](https://github.com/gethyas/doks/pull/754)
|
||||
- Add custom-head.html [`#755`](https://github.com/gethyas/doks/pull/755)
|
||||
- fix(layouts): index.redirects truncates newline [`#775`](https://github.com/gethyas/doks/pull/775)
|
||||
- fix: csp invalid for global alert dismissal [`#788`](https://github.com/gethyas/doks/pull/788)
|
||||
- deps: bump versions to latest [`79a0449`](https://github.com/gethyas/doks/commit/79a0449f15f0b9a3b77ee6d98a8d06e6fd94970b)
|
||||
- deps: bump versions to latest [`b1dfb71`](https://github.com/gethyas/doks/commit/b1dfb71f9020d471611c32d847a2c54410819718)
|
||||
- feat: add all in single navbar [`16152d6`](https://github.com/gethyas/doks/commit/16152d63609c5722186087742ad821779fb20fc0)
|
||||
|
||||
#### [v0.4.3](https://github.com/gethyas/doks/compare/v0.4.2...v0.4.3)
|
||||
|
||||
> 18 May 2022
|
||||
|
||||
- fix(flexsearch): separate chain of calls into statements [`#739`](https://github.com/gethyas/doks/pull/739)
|
||||
- deps: bump versions to latest [`f8bcce9`](https://github.com/gethyas/doks/commit/f8bcce9e3ca966ff894e5c2f9be6324db99e23ce)
|
||||
- meta: update changelog [`cf51ea8`](https://github.com/gethyas/doks/commit/cf51ea887dd12f79588f950988d0eb6c6895407f)
|
||||
|
||||
#### [v0.4.2](https://github.com/gethyas/doks/compare/v0.4.1...v0.4.2)
|
||||
|
||||
> 1 April 2022
|
||||
|
||||
- ux: fix details for firefox [`d4b6900`](https://github.com/gethyas/doks/commit/d4b6900c965da251d02834bf4a7eb17e6f12e3d2)
|
||||
- meta: update content security policy [`7c834a5`](https://github.com/gethyas/doks/commit/7c834a5a11858f8eb47fca558d3eb620589f1275)
|
||||
- ux: slide offcanvas menu from right to left [`f13cb0e`](https://github.com/gethyas/doks/commit/f13cb0e8de97d37c4a23e0062aeedc8cb84cb0ab)
|
||||
|
||||
#### [v0.4.1](https://github.com/gethyas/doks/compare/v0.4.0...v0.4.1)
|
||||
|
||||
> 30 March 2022
|
||||
|
||||
- fix(layouts): use the permalink instead of url [`#710`](https://github.com/gethyas/doks/pull/710)
|
||||
- fix(layouts): use comma for more than 2 contributors [`#714`](https://github.com/gethyas/doks/pull/714)
|
||||
- Adds details shortcode [`#661`](https://github.com/gethyas/doks/pull/661)
|
||||
- deps: uninstall mermaid [`a927710`](https://github.com/gethyas/doks/commit/a92771068520221d33de724bd1f971760c640e5e)
|
||||
- deps: bump versions to latest [`d127ee6`](https://github.com/gethyas/doks/commit/d127ee60b29915aff22f3ee4504f63db5c297847)
|
||||
- feat: add details shortcode [`7bc15dc`](https://github.com/gethyas/doks/commit/7bc15dc0ec65b48b98f9150f72a2abf7a681ab1f)
|
||||
|
||||
#### [v0.4.0](https://github.com/gethyas/doks/compare/v0.3.5...v0.4.0)
|
||||
|
||||
> 4 February 2022
|
||||
|
||||
- Adds scroll position lock for default docs sidebar [`#648`](https://github.com/gethyas/doks/pull/648)
|
||||
- feat: edit link docs repo subpath [`#618`](https://github.com/gethyas/doks/pull/618)
|
||||
- Sets font weight active page to 500 [`#644`](https://github.com/gethyas/doks/pull/644)
|
||||
- Adds support for sub navigation main menu [`#642`](https://github.com/gethyas/doks/pull/642)
|
||||
- [#604] Allow Firefox on macOS to see italic text. [`#626`](https://github.com/gethyas/doks/pull/626)
|
||||
- Adds new docs tree — with a single command 🤖 [`#637`](https://github.com/gethyas/doks/pull/637)
|
||||
- Adds full width as an option [`#636`](https://github.com/gethyas/doks/pull/636)
|
||||
- chore(deps-dev): bump clipboard from 2.0.8 to 2.0.9 [`#635`](https://github.com/gethyas/doks/pull/635)
|
||||
- feat: add multi level section menu [`#617`](https://github.com/gethyas/doks/pull/617)
|
||||
- feat: changeable global alert + fix: cumulative layout shift [`#613`](https://github.com/gethyas/doks/pull/613)
|
||||
- chore(deps-dev): bump mermaid from 8.13.2 to 8.13.3 [`#513`](https://github.com/gethyas/doks/pull/513)
|
||||
- Improve flexsearch feedback [`#517`](https://github.com/gethyas/doks/pull/517)
|
||||
- Simplify heading rendering [`#516`](https://github.com/gethyas/doks/pull/516)
|
||||
- Plainify flexsearch index values [`#511`](https://github.com/gethyas/doks/pull/511)
|
||||
- Add .Summary as fallback for description [`#508`](https://github.com/gethyas/doks/pull/508)
|
||||
- Fix flexsearch arrow key navigation error [`#509`](https://github.com/gethyas/doks/pull/509)
|
||||
- ✨Adds additional option for 'edit this page' feature [`#496`](https://github.com/gethyas/doks/pull/496)
|
||||
- Merge upstream [`#2`](https://github.com/gethyas/doks/pull/2)
|
||||
- deps: bump versions to latest [`e2b4ab2`](https://github.com/gethyas/doks/commit/e2b4ab23df16d91d7171bc9977eee6750937d2d6)
|
||||
- deps: bump versions to latest [`66b4b17`](https://github.com/gethyas/doks/commit/66b4b172597893735f2c8d572226bb556a1ce85f)
|
||||
- deps: bump versions to latest [`8b17636`](https://github.com/gethyas/doks/commit/8b176366757eaed1f7ce9a9e1ad0127ff1620a48)
|
||||
|
||||
#### [v0.3.5](https://github.com/gethyas/doks/compare/v0.3.4...v0.3.5)
|
||||
|
||||
> 5 October 2021
|
||||
|
||||
- feat: add versioning setup [`#478`](https://github.com/gethyas/doks/pull/478)
|
||||
- feat: adjust latex svg image to dark theme [`#460`](https://github.com/gethyas/doks/pull/460)
|
||||
- fix: edit-page multi-language support [`#459`](https://github.com/gethyas/doks/pull/459)
|
||||
- feat: add docsRepoBranch config [`#458`](https://github.com/gethyas/doks/pull/458)
|
||||
- feat: image max width [`#457`](https://github.com/gethyas/doks/pull/457)
|
||||
- fix: docs url [`#456`](https://github.com/gethyas/doks/pull/456)
|
||||
- chore(deps-dev): bump @babel/cli from 7.15.4 to 7.15.7 [`#463`](https://github.com/gethyas/doks/pull/463)
|
||||
- feat: add multilingual support [`#454`](https://github.com/gethyas/doks/pull/454)
|
||||
- deps: bump versions to latest [`94bacd3`](https://github.com/gethyas/doks/commit/94bacd3492e7b4d1e46aef13f86e5924ac645f4e)
|
||||
- deps: bump @babel/cli from 7.15.4 to 7.15.7 [`130a13b`](https://github.com/gethyas/doks/commit/130a13bd9d3891d995e7373cc9a64fa527b4ce26)
|
||||
- deps: bump versions to latest [`2503f5a`](https://github.com/gethyas/doks/commit/2503f5adf6d2650b82928a8770c2a1ccdc368a0c)
|
||||
|
||||
#### [v0.3.4](https://github.com/gethyas/doks/compare/v0.3.3...v0.3.4)
|
||||
|
||||
> 7 September 2021
|
||||
|
||||
- chore: update edit page default branch from master to main [`#426`](https://github.com/gethyas/doks/pull/426)
|
||||
- Update index.js [`#417`](https://github.com/gethyas/doks/pull/417)
|
||||
- Make id unique collapsible sidebar [`#378`](https://github.com/gethyas/doks/pull/378)
|
||||
- deps: bump versions to latest [`8a98716`](https://github.com/gethyas/doks/commit/8a9871654e03b79082cfd9ebdf49a0a8ce7e21eb)
|
||||
- deps: bump version to latest [`23d9dd7`](https://github.com/gethyas/doks/commit/23d9dd75c381b0440f4db717d63bea61baa0c584)
|
||||
- deps: bump versions to latest [`700e566`](https://github.com/gethyas/doks/commit/700e56611d3a83f33e786f51a191728db7267248)
|
||||
|
||||
#### [v0.3.3](https://github.com/gethyas/doks/compare/v0.3.2...v0.3.3)
|
||||
|
||||
> 5 July 2021
|
||||
|
||||
- Add Mermaid support [`#369`](https://github.com/gethyas/doks/pull/369)
|
||||
- Fix lint tests on Linux. [`#373`](https://github.com/gethyas/doks/pull/373)
|
||||
- feat: add mermaid [`f1fa5c5`](https://github.com/gethyas/doks/commit/f1fa5c5936558ff0b62d8a150bf303629bf50840)
|
||||
- content: remove temporary mermaid examples [`e4fc868`](https://github.com/gethyas/doks/commit/e4fc8681623685bf20f8e6568a69b5b6c4d81d16)
|
||||
- fix: update package-lock.json [`3797685`](https://github.com/gethyas/doks/commit/379768538d584676d40c99432f8b49f20c2c0562)
|
||||
|
||||
#### [v0.3.2](https://github.com/gethyas/doks/compare/v0.3.1...v0.3.2)
|
||||
|
||||
> 5 July 2021
|
||||
|
||||
- feat: update netlify workflow [`692efd6`](https://github.com/gethyas/doks/commit/692efd66692173a651c4b91d2ff3bc5f584a8a31)
|
||||
|
||||
#### [v0.3.1](https://github.com/gethyas/doks/compare/v0.3.0...v0.3.1)
|
||||
|
||||
> 2 July 2021
|
||||
|
||||
- fix: update theme.toml [`a0d4a76`](https://github.com/gethyas/doks/commit/a0d4a76d2a8187eae70b394905889a37e14b7a47)
|
||||
- fix: update permalinks setting [`4894d96`](https://github.com/gethyas/doks/commit/4894d96a69eb2c70b7059c90ee02594286b1122e)
|
||||
|
||||
#### [v0.3.0](https://github.com/gethyas/doks/compare/v0.2.3...v0.3.0)
|
||||
|
||||
> 25 June 2021
|
||||
|
||||
- ✨ Adds video shortcode [`#244`](https://github.com/gethyas/doks/pull/244)
|
||||
- ✨ Adds collapsible sidebar as an option [`#243`](https://github.com/gethyas/doks/pull/243)
|
||||
- 🐛 Fixes scrollbar in code blocks [`#231`](https://github.com/gethyas/doks/pull/231)
|
||||
- fix: add crossorigin attribute to webmanifest link [`#306`](https://github.com/gethyas/doks/pull/306)
|
||||
- ✨ Uses inline shortcode in alerts for large texts [`#235`](https://github.com/gethyas/doks/pull/235)
|
||||
- Fix issue where page bundle images fail to load [`#238`](https://github.com/gethyas/doks/pull/238)
|
||||
- Replace highlightBlock with highlightElement [`#240`](https://github.com/gethyas/doks/pull/240)
|
||||
- replaces possible backslash for win environments [`#217`](https://github.com/gethyas/doks/pull/217)
|
||||
- feat: add hugo-installer + auto-changelog [`93f7598`](https://github.com/gethyas/doks/commit/93f7598f872509805287b24d7d06fa3e6f745fbf)
|
||||
- deps: bump versions to latest [`33ccb71`](https://github.com/gethyas/doks/commit/33ccb717cb4b2fe859e79df36597cfa01cad08a9)
|
||||
- deps: bump versions to latest [`7b2bea1`](https://github.com/gethyas/doks/commit/7b2bea1bff290389b2a098d13100e1c4dfa3a4d5)
|
||||
|
||||
#### [v0.2.3](https://github.com/gethyas/doks/compare/v0.2.2...v0.2.3)
|
||||
|
||||
> 2 April 2021
|
||||
|
||||
- feat: update for netlify dev support [`10d0b45`](https://github.com/gethyas/doks/commit/10d0b45203003a43727521dc9f5c35e655500309)
|
||||
- content: update for doks v0.2.3 [`b505b24`](https://github.com/gethyas/doks/commit/b505b2412bc59fa271f7bf33ca6c835f66ca2936)
|
||||
- content: update readme [`52cd0c6`](https://github.com/gethyas/doks/commit/52cd0c6e6c902381c5775d5c719c5cdf1ff64111)
|
||||
|
||||
#### [v0.2.2](https://github.com/gethyas/doks/compare/v0.2.1...v0.2.2)
|
||||
|
||||
> 26 March 2021
|
||||
|
||||
- deps: bump bootstrap to 5.0.0-beta3 [`f76e68e`](https://github.com/gethyas/doks/commit/f76e68e832737c5fbc2421f164988767dddc5d99)
|
||||
- feat: update default highlight style [`28a3b39`](https://github.com/gethyas/doks/commit/28a3b39fb9653db3f627cd55d610f28ed95860b3)
|
||||
- chore(release): 0.2.2 [`c332b4d`](https://github.com/gethyas/doks/commit/c332b4d315431da4d94e98f0c2e6649fea0c8219)
|
||||
|
||||
#### [v0.2.1](https://github.com/gethyas/doks/compare/v0.2.0...v0.2.1)
|
||||
|
||||
> 18 March 2021
|
||||
|
||||
- chore(release): 0.2.1 [`41f9d0e`](https://github.com/gethyas/doks/commit/41f9d0ee49077b3440c119eaf6c5d955f56127f2)
|
||||
- fix: update package.json for npm workflow [`83b2c0e`](https://github.com/gethyas/doks/commit/83b2c0e002e09aabc0f4b1e8fb30353151707d8b)
|
||||
- Updating the README! [`d36a6cc`](https://github.com/gethyas/doks/commit/d36a6ccaa8a99aa022cca641eb4d4d6f126ef8a4)
|
||||
|
||||
#### [v0.2.0](https://github.com/gethyas/doks/compare/v0.1.6...v0.2.0)
|
||||
|
||||
> 18 March 2021
|
||||
|
||||
- Add katex math typesetting [`#181`](https://github.com/gethyas/doks/pull/181)
|
||||
- Add highlight.js as an option [`#180`](https://github.com/gethyas/doks/pull/180)
|
||||
- Add optional breadcrumb trail [`#166`](https://github.com/gethyas/doks/pull/166)
|
||||
- Add table support in markdown [`#165`](https://github.com/gethyas/doks/pull/165)
|
||||
- Update bootstrap to 5.0.0-beta2 [`#164`](https://github.com/gethyas/doks/pull/164)
|
||||
- chore(release): 0.2.0 [`c80a5da`](https://github.com/gethyas/doks/commit/c80a5dab1dead3108011793a0777dc6d94a47d70)
|
||||
- ux: improve contrast text searchbar dark mode [`57fee17`](https://github.com/gethyas/doks/commit/57fee179f8b8ee0c45d90456703230e1e7edeb84)
|
||||
- Updating the README! [`884d44e`](https://github.com/gethyas/doks/commit/884d44e0f7e3187a6431b8bdf8501993a6f80ac8)
|
||||
|
||||
#### [v0.1.6](https://github.com/gethyas/doks/compare/v0.1.5...v0.1.6)
|
||||
|
||||
> 1 March 2021
|
||||
|
||||
- build(deps-dev): bump postcss from 8.2.4 to 8.2.6 [`#132`](https://github.com/gethyas/doks/pull/132)
|
||||
- deps: bump versions to latest [`857906c`](https://github.com/gethyas/doks/commit/857906c69b2d9779abd158dd88c1057f84c8eb6f)
|
||||
- chore(release): 0.1.6 [`a83f039`](https://github.com/gethyas/doks/commit/a83f0392638c0c8fb775187a4b251c106921cef9)
|
||||
- scripts: add release:dry-run script [`686d0eb`](https://github.com/gethyas/doks/commit/686d0eb40da535c6907cf97c1d5c9353a1535b8c)
|
||||
|
||||
#### [v0.1.5](https://github.com/gethyas/doks/compare/v0.1.4...v0.1.5)
|
||||
|
||||
> 12 January 2021
|
||||
|
||||
- chore(release): 0.1.5 [`ff85a1d`](https://github.com/gethyas/doks/commit/ff85a1daecfff2aa21ddbc425c8d67b5e4cd6d9b)
|
||||
- Updating the README! [`d50ed1e`](https://github.com/gethyas/doks/commit/d50ed1ec0f37d178e1aef133d280b91d5473cd14)
|
||||
- feat: add hugo extended as a dependency [`258224c`](https://github.com/gethyas/doks/commit/258224c7880911c709f80e478cacf265fafbbb5c)
|
||||
|
||||
#### [v0.1.4](https://github.com/gethyas/doks/compare/v0.1.3...v0.1.4)
|
||||
|
||||
> 3 December 2020
|
||||
|
||||
- deps: bump versions to latest [`7ce56d0`](https://github.com/gethyas/doks/commit/7ce56d0a362c5099c0a6c50f6ad0f1c7ba969218)
|
||||
- deps: bump versions to latest [`0377b0d`](https://github.com/gethyas/doks/commit/0377b0de75a3cc8027bd255961f6d0c184d82575)
|
||||
- deps: bump versions [`c254be6`](https://github.com/gethyas/doks/commit/c254be61754071600665858d6a7d2e2fbc105af3)
|
||||
|
||||
#### [v0.1.3](https://github.com/gethyas/doks/compare/v0.1.2...v0.1.3)
|
||||
|
||||
> 17 November 2020
|
||||
|
||||
- chore(release): 0.1.3 [`abaaaef`](https://github.com/gethyas/doks/commit/abaaaef6d6056133737d285868e8f8c748b6cc46)
|
||||
- deps: update doks version file [`d326669`](https://github.com/gethyas/doks/commit/d326669c1d170cd5a76df1faafea472f3132fdf5)
|
||||
- deps: add doks version file [`f8dcfbe`](https://github.com/gethyas/doks/commit/f8dcfbeebfda5fef533b9b7bc2463fa0dfafd5fa)
|
||||
|
||||
#### [v0.1.2](https://github.com/gethyas/doks/compare/v0.1.1...v0.1.2)
|
||||
|
||||
> 17 November 2020
|
||||
|
||||
- deps: bump versions [`6ce5813`](https://github.com/gethyas/doks/commit/6ce5813543417f2328846a78b971201d7611781d)
|
||||
- style: update fonts+ [`41d63a2`](https://github.com/gethyas/doks/commit/41d63a2528f574e3934d58fb30811ce9fb879798)
|
||||
- chore(release): 0.1.2 [`646f0c8`](https://github.com/gethyas/doks/commit/646f0c87f0ee5a9a97d357753e86647519f3d1ed)
|
||||
|
||||
#### [v0.1.1](https://github.com/gethyas/doks/compare/v0.1.0...v0.1.1)
|
||||
|
||||
> 10 November 2020
|
||||
|
||||
- deps: reinstall [`6705f4b`](https://github.com/gethyas/doks/commit/6705f4bbc4da4cd967e7165ab3681137014633bb)
|
||||
- docs: update content [`c4c83eb`](https://github.com/gethyas/doks/commit/c4c83eb9b68674553c6a7e988249a808d75250b4)
|
||||
- docs: update reasons [`1cec423`](https://github.com/gethyas/doks/commit/1cec4237b395ff306b765d47b29b8410c2884921)
|
||||
|
||||
#### v0.1.0
|
||||
|
||||
> 6 November 2020
|
||||
|
||||
- build(deps-dev): bump postcss from 8.1.4 to 8.1.6 [`#18`](https://github.com/gethyas/doks/pull/18)
|
||||
- Bump lodash from 4.17.15 to 4.17.20 [`#8`](https://github.com/gethyas/doks/pull/8)
|
||||
- [Security] Bump elliptic from 6.5.2 to 6.5.3 [`#6`](https://github.com/gethyas/doks/pull/6)
|
||||
- [Security] Bump lazysizes from 5.2.0 to 5.2.1 [`#7`](https://github.com/gethyas/doks/pull/7)
|
||||
- test: update ci [`d16a94d`](https://github.com/gethyas/doks/commit/d16a94db755deff04e56da96f4e84d339a094236)
|
||||
- deps: bump postcss [`12411c3`](https://github.com/gethyas/doks/commit/12411c38a98fb362ff348e5c151fcb7813e8691e)
|
||||
- Initial commit [`67f0a6e`](https://github.com/gethyas/doks/commit/67f0a6e623169a99a71c51c2434e14041c9211aa)
|
||||
|
||||
<!-- auto-changelog-above -->
|
||||
|
||||
### [0.2.3](https://github.com/h-enk/doks/compare/v0.2.2...v0.2.3) (2021-04-02)
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* update for netlify dev support ([10d0b45](https://github.com/h-enk/doks/commit/10d0b45203003a43727521dc9f5c35e655500309))
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* add class user added to img-simple shortcode ([bce8863](https://github.com/h-enk/doks/commit/bce8863269dd036146d5b6e447d67a23de70227d))
|
||||
* drop npm workflow ([977bbda](https://github.com/h-enk/doks/commit/977bbdad82e8e21599e1fcfc0d93fc4e448cf2af))
|
||||
|
||||
|
||||
### Dependencies
|
||||
|
||||
* bump versions to latest ([171293a](https://github.com/h-enk/doks/commit/171293a692450d45348be2870434db2a01578de9))
|
||||
|
||||
### [0.2.2](https://github.com/h-enk/doks/compare/v0.2.1...v0.2.2) (2021-03-26)
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* update default highlight style ([28a3b39](https://github.com/h-enk/doks/commit/28a3b39fb9653db3f627cd55d610f28ed95860b3))
|
||||
|
||||
|
||||
### Dependencies
|
||||
|
||||
* bump bootstrap to 5.0.0-beta3 ([f76e68e](https://github.com/h-enk/doks/commit/f76e68e832737c5fbc2421f164988767dddc5d99))
|
||||
* bump versions to latest ([843e8d4](https://github.com/h-enk/doks/commit/843e8d45252bc596f8422fbce6938b38976373f9))
|
||||
|
||||
### [0.2.1](https://github.com/h-enk/doks/compare/v0.2.0...v0.2.1) (2021-03-18)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* update package.json for npm workflow ([83b2c0e](https://github.com/h-enk/doks/commit/83b2c0e002e09aabc0f4b1e8fb30353151707d8b))
|
||||
|
||||
## [0.2.0](https://github.com/h-enk/doks/compare/v0.1.6...v0.2.0) (2021-03-18)
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* add doks default style + examples ([ad91b05](https://github.com/h-enk/doks/commit/ad91b0523e6e240c98710bfedfd31342cb2389dc))
|
||||
* add highlight.js as an option ([5180bd5](https://github.com/h-enk/doks/commit/5180bd53c6349372916907783fa9d0d3b22755af))
|
||||
* add katex math typesetting ([253b938](https://github.com/h-enk/doks/commit/253b938a2e303a06d07488c6eae79c74442e56d6))
|
||||
* add npm-package workflow ([e2ba008](https://github.com/h-enk/doks/commit/e2ba0086f780380fa171cfc2efaa1e868cfc5fc5))
|
||||
* add npm-package workflow ([be4b68c](https://github.com/h-enk/doks/commit/be4b68c3d85a04251a9cdcbf1e5a3639b9c53144))
|
||||
* add optional breadcrumb trail ([9c67aca](https://github.com/h-enk/doks/commit/9c67aca368f68ab916ff61caa36e0de69c43dec3))
|
||||
* add table support in markdown ([5ee11a8](https://github.com/h-enk/doks/commit/5ee11a80e274d5e71ff7a4809516101e7e7ea214))
|
||||
* added options lazySizes, clipBoard, instantPage, flexSearch, and darkMode ([5f03d61](https://github.com/h-enk/doks/commit/5f03d61e81aff6f8a0a194cb23bcf821c3476481))
|
||||
* added options lazySizes, clipBoard, instantPage, flexSearch, and darkMode ([5099c47](https://github.com/h-enk/doks/commit/5099c4773195aab0a39bd160330bc25f3173c3b0))
|
||||
* added options lazySizes, clipBoard, instantPage, flexSearch, and darkMode ([226f661](https://github.com/h-enk/doks/commit/226f661966ebb68f595541b31e6605d1c71efbdd))
|
||||
* preload key katex fonts ([6c4d45d](https://github.com/h-enk/doks/commit/6c4d45d248ee9b58745105d91259fc2dfb9540b3))
|
||||
* update bootstrap to 5.0.0-beta2 ([22afec7](https://github.com/h-enk/doks/commit/22afec709a1f11ef010d3436eca401cd4d5fd62f))
|
||||
* update netlify.toml for netlify-cli use ([9581fc4](https://github.com/h-enk/doks/commit/9581fc4c44d2fdfe6b6093365fdbf5dcd2b869a2))
|
||||
* update netlify.toml for netlify-cli use ([20bac2a](https://github.com/h-enk/doks/commit/20bac2a25bcdb3156120afd0d1b6543c0235f3c7))
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* linting error ([92798c9](https://github.com/h-enk/doks/commit/92798c92cd300bf1ed953c2a25bcbe0f8b24c1b2))
|
||||
* script loading + script order ([89784d9](https://github.com/h-enk/doks/commit/89784d9656712ce31d83c038a87821f78aa07a3c))
|
||||
* update content security header ([64efe3f](https://github.com/h-enk/doks/commit/64efe3ff00c5d315b43d40a4dc056ef7a3f88151))
|
||||
* update content security header ([e0996b3](https://github.com/h-enk/doks/commit/e0996b36cbdc439bf0ad6595342c0f965f31c119))
|
||||
* update content security header ([b54cae0](https://github.com/h-enk/doks/commit/b54cae0621211bce0754c17fdc302c96b6e50f6c))
|
||||
* update content security header ([6d38761](https://github.com/h-enk/doks/commit/6d387614d584607d07c3f944ee55b8a2d6a4ce4e))
|
||||
* update content security headers ([c70baa4](https://github.com/h-enk/doks/commit/c70baa448770d39d5c8f0842f742f5f8828a31ca))
|
||||
* update content security headers ([8df0fdd](https://github.com/h-enk/doks/commit/8df0fdd8c311752de685ed10f7e8ec1d5d22f69c))
|
||||
* update content security headers ([d1008a7](https://github.com/h-enk/doks/commit/d1008a736639e731679fd1e18eba4e6d437f00ad))
|
||||
|
||||
|
||||
### Dependencies
|
||||
|
||||
* bump versions to latest ([e43f982](https://github.com/h-enk/doks/commit/e43f9821e49792e2e06f2e18ac419d58befc7723))
|
||||
* bump versions to latest ([9cdd693](https://github.com/h-enk/doks/commit/9cdd69352bb02c12a6174cea5d7d6b330e47f1b5))
|
||||
|
||||
### [0.1.6](https://github.com/h-enk/doks/compare/v0.1.5...v0.1.6) (2021-03-01)
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* add check commands ([85baab4](https://github.com/h-enk/doks/commit/85baab47ff06557051f373aa6afeb114fb40f50f))
|
||||
* match active class docs menu on identifier ([7384cfe](https://github.com/h-enk/doks/commit/7384cfe8f1652b8053f077c964633d4ad12cf281))
|
||||
* update package-lock.json ([8c73d74](https://github.com/h-enk/doks/commit/8c73d741fd789e829c35bf51cfc25c6d790b0dbb))
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* convert tabs to spaces ([6511531](https://github.com/h-enk/doks/commit/6511531c5e3f4ae1a9ad5e64972bd34c8e62cb0d))
|
||||
* remove extra space in else statement ([03637e5](https://github.com/h-enk/doks/commit/03637e547ef7afa1dcea853746634df3161656db))
|
||||
* update urls for deploy to github+ ([8c10161](https://github.com/h-enk/doks/commit/8c101613fa488518152675bb0916e74d444df1e2))
|
||||
|
||||
|
||||
### Documentation
|
||||
|
||||
* update faq ([555fd17](https://github.com/h-enk/doks/commit/555fd17bb21d94764688f8f0c818d352183244b7))
|
||||
* update faq ([f751f3f](https://github.com/h-enk/doks/commit/f751f3ff02b736b36854e396b2536a9fef311c50))
|
||||
* update readme ([f32c60f](https://github.com/h-enk/doks/commit/f32c60f1ff6fe7f898efa7dc5ff97bd4b60148a6))
|
||||
* update requirement sections ([22a8bfb](https://github.com/h-enk/doks/commit/22a8bfbc87b20ae4d03b733b32f1e1f956e3671c))
|
||||
* update requirements sections ([3767e8b](https://github.com/h-enk/doks/commit/3767e8bfa0893d9bb827c35b5b2694c023e78ceb))
|
||||
* update requirements sections ([8e14777](https://github.com/h-enk/doks/commit/8e14777805500abbf7cbc840a4a19c7635ce5b96))
|
||||
* update requirements sections ([49f803e](https://github.com/h-enk/doks/commit/49f803e7e3d905d01ff00f5d02357defb885fe7e))
|
||||
* update requirements sections ([4791d5a](https://github.com/h-enk/doks/commit/4791d5a0ba464c57f74d3bd6736985830f0d9e71))
|
||||
* update requirements sections ([5321e8d](https://github.com/h-enk/doks/commit/5321e8d3c1094074c2503c3895579ebe32846176))
|
||||
* update requirements sections ([920776a](https://github.com/h-enk/doks/commit/920776a6d55167cd8ce40f2edfcc37f2841e3def))
|
||||
* update requirements sections ([3420ae9](https://github.com/h-enk/doks/commit/3420ae9c55dedd5424bf7f2f32a3cf1dacaf4e6f))
|
||||
* update showcase link ([3e00037](https://github.com/h-enk/doks/commit/3e00037d78b3e980bdbdf005a5c13d9a39d2fa3d))
|
||||
|
||||
|
||||
### Dependencies
|
||||
|
||||
* bump autoprefixer, bootstrap, stylelint, and netlify-lambda to latest versions ([955cb46](https://github.com/h-enk/doks/commit/955cb46a5d4936ce355c28a4a2a8b5c025a8ca1c))
|
||||
* bump deps to latest ([05de29a](https://github.com/h-enk/doks/commit/05de29ace1e735840aea04f90924c2c833b00b86))
|
||||
* bump postcss-purgecss to 4.0.0 + eslint to 7.18.0 ([44e90f2](https://github.com/h-enk/doks/commit/44e90f2bc944693967c6e3864673d8f21ee07648))
|
||||
* bump versions to latest ([857906c](https://github.com/h-enk/doks/commit/857906c69b2d9779abd158dd88c1057f84c8eb6f))
|
||||
* bump versions to latest ([5e52acb](https://github.com/h-enk/doks/commit/5e52acbc35db30267867e1b0981c8f4299bdf51d))
|
||||
* bump versions to latest ([3087ae0](https://github.com/h-enk/doks/commit/3087ae0f521a780d38ccbd0afbb07e23fa9fad7d))
|
||||
|
||||
### [0.1.5](https://github.com/h-enk/doks/compare/v0.1.4...v0.1.5) (2021-01-12)
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* add hugo extended as a dependency ([258224c](https://github.com/h-enk/doks/commit/258224c7880911c709f80e478cacf265fafbbb5c))
|
||||
* add hugothemes reqs ([b3afb4b](https://github.com/h-enk/doks/commit/b3afb4b4055f5cfe5a28d355ac26f577fc442392))
|
||||
* remove exampleSite ([70db6bc](https://github.com/h-enk/doks/commit/70db6bca005c2e2f82e3ac64d9150c4d87889758))
|
||||
|
||||
|
||||
### Documentation
|
||||
|
||||
* update code of conduct ([411123b](https://github.com/h-enk/doks/commit/411123b207cfe0715c31455f9e5cbcfd9a2d93cc))
|
||||
* update frontpage ([f2f4937](https://github.com/h-enk/doks/commit/f2f49370a1ecd7d312de1b348e08e26d0a327121))
|
||||
* update homepage ([4e65d01](https://github.com/h-enk/doks/commit/4e65d012c5887ff8db9650006d8c6f2303d1b338))
|
||||
* update readme ([7283eb9](https://github.com/h-enk/doks/commit/7283eb997da055892d95015f1411b8528f9b2298))
|
||||
* update readme ([9dc2f0e](https://github.com/h-enk/doks/commit/9dc2f0ebfe75f968f77290d911e3be035b34e954))
|
||||
* update readme ([3ed1ad6](https://github.com/h-enk/doks/commit/3ed1ad6376959a678ceac990310dd51d2f2864f8))
|
||||
* update readme ([6a35faf](https://github.com/h-enk/doks/commit/6a35fafe485d82f4a327b8b4ed10a703eac4af1b))
|
||||
* update readme ([40dd5e4](https://github.com/h-enk/doks/commit/40dd5e4eea340f2fae24484bb86325f4410378ff))
|
||||
* update readme ([7b75c47](https://github.com/h-enk/doks/commit/7b75c47c9e0e5953b781ce4f784a3083361970fb))
|
||||
* update readme ([2d33818](https://github.com/h-enk/doks/commit/2d3381885ab6578ed44720e8f99033429034ba2a))
|
||||
* update readme ([632623f](https://github.com/h-enk/doks/commit/632623f29401f38e0a853508346a94267372dfa1))
|
||||
* update readme for docs discussions ([fb9e340](https://github.com/h-enk/doks/commit/fb9e340f6e48293ed2d32a73754ae081f41a0fc9))
|
||||
* update showcase link ([74724eb](https://github.com/h-enk/doks/commit/74724eb4c53d15475492b2b7c103b3056260fd28))
|
||||
|
||||
|
||||
### Dependencies
|
||||
|
||||
* bump to latest versions ([83f4163](https://github.com/h-enk/doks/commit/83f41636f71e547f4928597bdf67128fe954f83e))
|
||||
* bump to latest versions ([372d9cb](https://github.com/h-enk/doks/commit/372d9cb64d4d68b6e95b252112e27ff9123b456c))
|
||||
* bump versions to latest ([6184067](https://github.com/h-enk/doks/commit/6184067621a33cf0e53a4ae9fab269a91a11b730))
|
||||
* bump versions to latest ([940f30d](https://github.com/h-enk/doks/commit/940f30dcebfde1a4a8900118fdf84f57410ed63a))
|
||||
* bump versions to latest ([751d6c6](https://github.com/h-enk/doks/commit/751d6c68caa1811be92eaae378e16413f09eb12e))
|
||||
* bump versions to latest ([b66c0a6](https://github.com/h-enk/doks/commit/b66c0a6221cddbaf997c032222276185cc910d9d))
|
||||
* bump versions to latest ([1d7e3b8](https://github.com/h-enk/doks/commit/1d7e3b873b537e498ef4ef5ce5548b252a62c4bc))
|
||||
* bump versions to latest ([0aa2e0f](https://github.com/h-enk/doks/commit/0aa2e0f7e07e930ba507f8652e0d6375c562def7))
|
||||
* bump versions to latest ([ce5c733](https://github.com/h-enk/doks/commit/ce5c7336f95c3d6e6be4c7b3fb7db3812b7ac4ac))
|
||||
* bump versions to latest ([cc62487](https://github.com/h-enk/doks/commit/cc6248722a91f163359ce42e83f06e0ae5277ef7))
|
||||
|
||||
### [0.1.4](https://github.com/h-enk/doks/compare/v0.1.3...v0.1.4) (2020-12-03)
|
||||
|
||||
|
||||
### Documentation
|
||||
|
||||
* update content ([63ca41e](https://github.com/h-enk/doks/commit/63ca41e1076375eb99aad5ca6d77d95516b6f349))
|
||||
|
||||
|
||||
### Dependencies
|
||||
|
||||
* bump versions ([c254be6](https://github.com/h-enk/doks/commit/c254be61754071600665858d6a7d2e2fbc105af3))
|
||||
* bump versions to latest ([831442c](https://github.com/h-enk/doks/commit/831442c1a6f3372b2930681ca9c937d123b5f6a3))
|
||||
* bump versions to latest ([0377b0d](https://github.com/h-enk/doks/commit/0377b0de75a3cc8027bd255961f6d0c184d82575))
|
||||
* bump versions to latest ([358bad6](https://github.com/h-enk/doks/commit/358bad680156937886f2957b6c6fcdbcdd97782e))
|
||||
* bump versions to latest ([7ce56d0](https://github.com/h-enk/doks/commit/7ce56d0a362c5099c0a6c50f6ad0f1c7ba969218))
|
||||
|
||||
### [0.1.3](https://github.com/h-enk/doks/compare/v0.1.2...v0.1.3) (2020-11-17)
|
||||
|
||||
|
||||
### Dependencies
|
||||
|
||||
* add doks version file ([f8dcfbe](https://github.com/h-enk/doks/commit/f8dcfbeebfda5fef533b9b7bc2463fa0dfafd5fa))
|
||||
* update doks version file ([d326669](https://github.com/h-enk/doks/commit/d326669c1d170cd5a76df1faafea472f3132fdf5))
|
||||
|
||||
### [0.1.2](https://github.com/h-enk/doks/compare/v0.1.1...v0.1.2) (2020-11-17)
|
||||
|
||||
|
||||
### Dependencies
|
||||
|
||||
* bump versions ([6ce5813](https://github.com/h-enk/doks/commit/6ce5813543417f2328846a78b971201d7611781d))
|
||||
|
||||
### [0.1.1](https://github.com/h-enk/doks/compare/v0.1.0...v0.1.1) (2020-11-10)
|
||||
|
||||
|
||||
### Documentation
|
||||
|
||||
* update content ([c4c83eb](https://github.com/h-enk/doks/commit/c4c83eb9b68674553c6a7e988249a808d75250b4))
|
||||
* update reasons ([1cec423](https://github.com/h-enk/doks/commit/1cec4237b395ff306b765d47b29b8410c2884921))
|
||||
|
||||
|
||||
### Dependencies
|
||||
|
||||
* bump eslint ([d794dab](https://github.com/h-enk/doks/commit/d794dabbe389b0f616ccfca564607f9be4670e0c))
|
||||
* reinstall ([6705f4b](https://github.com/h-enk/doks/commit/6705f4bbc4da4cd967e7165ab3681137014633bb))
|
||||
|
||||
## 0.1.0 (2020-11-06)
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* add flexsearch ([97d8e2c](https://github.com/h-enk/doks/commit/97d8e2c0e2568f9f9f653dcc243d06aa25482e70))
|
||||
* add standard-version ([6d83ec3](https://github.com/h-enk/doks/commit/6d83ec308e0a9c4db5aa8d2f2c8309ad09673605))
|
||||
* update static assets ([1b16e6b](https://github.com/h-enk/doks/commit/1b16e6bb3d87888b51eff2a8ce7d482cc1a5daf6))
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* update badges ([90cea78](https://github.com/h-enk/doks/commit/90cea786c1aec4cc7004fdf9571ad05a739aa96c))
|
||||
* update file path ([73004c3](https://github.com/h-enk/doks/commit/73004c3f8eaee87957ab53bb1f27716acde7a361))
|
||||
|
||||
|
||||
### Documentation
|
||||
|
||||
* update ci badge ([7c4373a](https://github.com/h-enk/doks/commit/7c4373a3a9a29f35f858f27ad4b67ad0379a3da0))
|
||||
* update content ([c6ea4f3](https://github.com/h-enk/doks/commit/c6ea4f3ae54e1c7b890dffb2243c0a81eb96b295))
|
||||
* update content ([c8c403d](https://github.com/h-enk/doks/commit/c8c403dbf9963eeef3c7dca7f6334929bbc5383b))
|
||||
* update gist id ([81d7b1a](https://github.com/h-enk/doks/commit/81d7b1a5df91f238378723018a84d0dd4cd12dd5))
|
||||
* update README ([a1d2e80](https://github.com/h-enk/doks/commit/a1d2e8091a0a2051fdbb3384ad797d8cd5251ce6))
|
||||
* update README ([a9aa6ab](https://github.com/h-enk/doks/commit/a9aa6ab1af1ef5c8619dd3d7c64d96d5a21d956c))
|
||||
* update README ([d0bcf8d](https://github.com/h-enk/doks/commit/d0bcf8d69dfd2d28d9f603945efc37a64b8b529b))
|
||||
* update README ([f6dcccc](https://github.com/h-enk/doks/commit/f6dcccc458a1a4c5cac655976a665fb66b1f7b7a))
|
||||
* update README ([eb4e714](https://github.com/h-enk/doks/commit/eb4e714f4f1fd97117a9fc155df6b6e4be55c0ed))
|
||||
|
||||
|
||||
### Dependencies
|
||||
|
||||
* bump postcss ([12411c3](https://github.com/h-enk/doks/commit/12411c38a98fb362ff348e5c151fcb7813e8691e))
|
||||
* bump postcss-cli ([88b49b5](https://github.com/h-enk/doks/commit/88b49b552849ab807f17ff9bfacfc847d9c2dbd2))
|
||||
* bump versions ([53cf8ba](https://github.com/h-enk/doks/commit/53cf8ba6e260687c4fc5eea0774a7d0e6aa559f8))
|
||||
* update for dependabot PR's ([bad7deb](https://github.com/h-enk/doks/commit/bad7debffa8d8e6b442edf6e51f07f915fdfdd83))
|
||||
- [#1226](https://github.com/gethyas/doks/pull/1226) [`664063e`](https://github.com/gethyas/doks/commit/664063eb6a02d24a3fceb61ea9ed8df589a11033) Thanks [@h-enk](https://github.com/h-enk)! - Update for new Hyas setup
|
||||
|
@ -1,11 +1,8 @@
|
||||
{
|
||||
"compilerOptions": {
|
||||
"baseUrl": ".",
|
||||
"paths": {
|
||||
"*": [
|
||||
"*",
|
||||
"..\\node_modules\\@hyas\\doks-core\\assets\\*"
|
||||
]
|
||||
"compilerOptions": {
|
||||
"baseUrl": ".",
|
||||
"paths": {
|
||||
"*": ["*", "..\\node_modules\\@hyas\\doks-core\\assets\\*"]
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1,5 +1,5 @@
|
||||
title = "My Docs"
|
||||
baseurl = "/"
|
||||
baseurl = "http://localhost/"
|
||||
canonifyURLs = false
|
||||
disableAliases = true
|
||||
disableHugoGeneratorInject = true
|
||||
|
@ -46,6 +46,9 @@
|
||||
[[mounts]]
|
||||
source = "portails/shared/docs/vaultwarden"
|
||||
target = "content/docs/vaultwarden"
|
||||
[[mounts]]
|
||||
source = "portails/shared/docs/outline"
|
||||
target = "content/docs/outline"
|
||||
|
||||
[[mounts]]
|
||||
source = "portails/apps.lamelio.fr/content"
|
||||
|
22
config/avecsante.app/hugo.toml
Normal file
22
config/avecsante.app/hugo.toml
Normal file
@ -0,0 +1,22 @@
|
||||
baseURL = "https://avecsante.app/"
|
||||
title = "AVECsanté.app"
|
||||
languageCode = "fr-FR"
|
||||
defaultContentLanguage = "fr"
|
||||
disableLanguages = ["de", "nl", "en"]
|
||||
|
||||
[Params]
|
||||
url = "avecsante.app"
|
||||
domain = "avecsante.app"
|
||||
support = "support@avecsante.app"
|
||||
poweredBy = false
|
||||
uptimeKumaUrl = "https://status.avecsante.app"
|
||||
|
||||
[Params.doks]
|
||||
breadcrumbTrail = true
|
||||
|
||||
[languages.fr.params]
|
||||
footer = 'Mise en place par <a class="text-muted" href="https://p4pillon.org/">P4Pillon</a>'
|
||||
|
||||
[deployment.targets]
|
||||
name = "production"
|
||||
URL = "s3://avecsante.app?endpoint=https://s3.garage.resilien.cloud&disableSSL=true&s3ForcePathStyle=true®ion=garage"
|
19
config/avecsante.app/menus.fr.toml
Normal file
19
config/avecsante.app/menus.fr.toml
Normal file
@ -0,0 +1,19 @@
|
||||
[[main]]
|
||||
name = "Guides"
|
||||
url = "/docs/introduction/bienvenue/"
|
||||
weight = 10
|
||||
|
||||
[[footer]]
|
||||
name = "Mentions légales"
|
||||
url = "/mentions-legales/"
|
||||
weight = 10
|
||||
|
||||
[[footer]]
|
||||
name = "Sources du site"
|
||||
url = "https://git.resilien.fr/ResiLien/portails/"
|
||||
weight = 20
|
||||
|
||||
[[footer]]
|
||||
name = "Statuts des services"
|
||||
url = "https://status.avecsante.app/"
|
||||
weight = 30
|
122
config/avecsante.app/module.toml
Normal file
122
config/avecsante.app/module.toml
Normal file
@ -0,0 +1,122 @@
|
||||
# mounts
|
||||
## archetypes
|
||||
[[mounts]]
|
||||
source = "node_modules/@hyas/doks-core/archetypes"
|
||||
target = "archetypes"
|
||||
|
||||
[[mounts]]
|
||||
source = "archetypes"
|
||||
target = "archetypes"
|
||||
|
||||
## assets
|
||||
[[mounts]]
|
||||
source = "node_modules/@hyas/core/assets"
|
||||
target = "assets"
|
||||
|
||||
[[mounts]]
|
||||
source = "node_modules/@hyas/images/assets"
|
||||
target = "assets"
|
||||
excludeFiles = "/scss/**.scss"
|
||||
|
||||
[[mounts]]
|
||||
source = "node_modules/@hyas/doks-core/assets"
|
||||
target = "assets"
|
||||
|
||||
[[mounts]]
|
||||
source = "node_modules/@tabler/icons/icons"
|
||||
target = "assets/svgs/tabler-icons"
|
||||
|
||||
[[mounts]]
|
||||
source = "assets"
|
||||
target = "assets"
|
||||
|
||||
## content
|
||||
[[mounts]]
|
||||
source = "portails/shared/content"
|
||||
target = "content"
|
||||
[[mounts]]
|
||||
source = "portails/shared/docs/element"
|
||||
target = "content/docs/element"
|
||||
[[mounts]]
|
||||
source = "portails/shared/docs/signaturepdf"
|
||||
target = "content/docs/signaturepdf"
|
||||
[[mounts]]
|
||||
source = "portails/shared/docs/nextcloud"
|
||||
target = "content/docs/nextcloud"
|
||||
[[mounts]]
|
||||
source = "portails/shared/docs/outline"
|
||||
target = "content/docs/outline"
|
||||
[[mounts]]
|
||||
source = "portails/shared/docs/vikunja"
|
||||
target = "content/docs/vikunja"
|
||||
[[mounts]]
|
||||
source = "portails/shared/docs/vaultwarden"
|
||||
target = "content/docs/vaultwarden"
|
||||
|
||||
[[mounts]]
|
||||
source = "portails/avecsante.app/content"
|
||||
target = "content"
|
||||
|
||||
## data
|
||||
[[mounts]]
|
||||
source = "node_modules/@hyas/doks-core/data"
|
||||
target = "data"
|
||||
|
||||
[[mounts]]
|
||||
source = "data"
|
||||
target = "data"
|
||||
|
||||
[[mounts]]
|
||||
source = "portails/shared/data"
|
||||
target = "data"
|
||||
|
||||
[[mounts]]
|
||||
source = "portails/avecsante.app/data"
|
||||
target = "data"
|
||||
|
||||
## i18n
|
||||
[[mounts]]
|
||||
source = "node_modules/@hyas/doks-core/i18n"
|
||||
target = "i18n"
|
||||
|
||||
[[mounts]]
|
||||
source = "i18n"
|
||||
target = "i18n"
|
||||
|
||||
## layouts
|
||||
[[mounts]]
|
||||
source = "node_modules/@hyas/core/layouts"
|
||||
target = "layouts"
|
||||
|
||||
[[mounts]]
|
||||
source = "node_modules/@hyas/seo/layouts"
|
||||
target = "layouts"
|
||||
|
||||
[[mounts]]
|
||||
source = "node_modules/@hyas/images/layouts"
|
||||
target = "layouts"
|
||||
|
||||
[[mounts]]
|
||||
source = "node_modules/@hyas/doks-core/layouts"
|
||||
target = "layouts"
|
||||
|
||||
[[mounts]]
|
||||
source = "node_modules/@hyas/inline-svg/layouts"
|
||||
target = "layouts"
|
||||
|
||||
[[mounts]]
|
||||
source = "layouts"
|
||||
target = "layouts"
|
||||
|
||||
[[mounts]]
|
||||
source = "portails/shared/layouts"
|
||||
target = "layouts"
|
||||
|
||||
## static
|
||||
[[mounts]]
|
||||
source = "node_modules/@hyas/doks-core/static"
|
||||
target = "static"
|
||||
|
||||
[[mounts]]
|
||||
source = "static"
|
||||
target = "static"
|
@ -1,17 +1,17 @@
|
||||
module.exports = {
|
||||
presets: [
|
||||
[
|
||||
'@babel/preset-env',
|
||||
{
|
||||
targets: {
|
||||
browsers: [
|
||||
// Best practice: https://github.com/babel/babel/issues/7789
|
||||
'>=1%',
|
||||
'not ie 11',
|
||||
'not op_mini all',
|
||||
],
|
||||
},
|
||||
},
|
||||
],
|
||||
],
|
||||
presets: [
|
||||
[
|
||||
'@babel/preset-env',
|
||||
{
|
||||
targets: {
|
||||
browsers: [
|
||||
// Best practice: https://github.com/babel/babel/issues/7789
|
||||
'>=1%',
|
||||
'not ie 11',
|
||||
'not op_mini all'
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
]
|
||||
};
|
||||
|
@ -34,12 +34,12 @@
|
||||
[[mounts]]
|
||||
source = "portails/shared/content"
|
||||
target = "content"
|
||||
[[mounts]]
|
||||
source = "portails/shared/docs/hedgedoc"
|
||||
target = "content/docs/hedgedoc"
|
||||
[[mounts]]
|
||||
source = "portails/shared/docs/mobilizon"
|
||||
target = "content/docs/mobilizon"
|
||||
#[[mounts]]
|
||||
# source = "portails/shared/docs/hedgedoc"
|
||||
# target = "content/docs/hedgedoc"
|
||||
#[[mounts]]
|
||||
# source = "portails/shared/docs/mobilizon"
|
||||
# target = "content/docs/mobilizon"
|
||||
[[mounts]]
|
||||
source = "portails/shared/docs/signaturepdf"
|
||||
target = "content/docs/signaturepdf"
|
||||
@ -49,9 +49,9 @@
|
||||
[[mounts]]
|
||||
source = "portails/shared/docs/vikunja"
|
||||
target = "content/docs/vikunja"
|
||||
[[mounts]]
|
||||
source = "portails/shared/docs/vaultwarden"
|
||||
target = "content/docs/vaultwarden"
|
||||
#[[mounts]]
|
||||
# source = "portails/shared/docs/vaultwarden"
|
||||
# target = "content/docs/vaultwarden"
|
||||
|
||||
[[mounts]]
|
||||
source = "portails/cremeaux.org/content"
|
||||
|
@ -3,66 +3,61 @@ const purgecss = require('@fullhuman/postcss-purgecss');
|
||||
const whitelister = require('purgecss-whitelister');
|
||||
|
||||
module.exports = {
|
||||
plugins: [
|
||||
autoprefixer(),
|
||||
purgecss({
|
||||
content: [ './hugo_stats.json' ],
|
||||
extractors: [
|
||||
{
|
||||
extractor: (content) => {
|
||||
const els = JSON.parse(content).htmlElements;
|
||||
return els.tags.concat(els.classes, els.ids);
|
||||
},
|
||||
extensions: ['json'],
|
||||
},
|
||||
],
|
||||
dynamicAttributes: [
|
||||
'aria-expanded',
|
||||
'data-bs-popper',
|
||||
'data-bs-target',
|
||||
'data-bs-theme',
|
||||
'data-dark-mode',
|
||||
'data-global-alert',
|
||||
'data-pane', // tabs.js
|
||||
'data-popper-placement',
|
||||
'data-sizes',
|
||||
'data-toggle-tab', // tabs.js
|
||||
'id',
|
||||
'size',
|
||||
'type',
|
||||
],
|
||||
safelist: [
|
||||
'active',
|
||||
'btn-clipboard', // clipboards.js
|
||||
'clipboard', // clipboards.js
|
||||
'disabled',
|
||||
'hidden',
|
||||
'modal-backdrop', // search-modal.js
|
||||
'selected', // search-modal.js
|
||||
'show',
|
||||
'img-fluid',
|
||||
'blur-up',
|
||||
'lazyload',
|
||||
'lazyloaded',
|
||||
'alert-link',
|
||||
'container-fw ',
|
||||
'container-lg',
|
||||
'container-fluid',
|
||||
'offcanvas-backdrop',
|
||||
'figcaption',
|
||||
'dt',
|
||||
'dd',
|
||||
'showing',
|
||||
'hiding',
|
||||
'page-item',
|
||||
'page-link',
|
||||
...whitelister([
|
||||
'./assets/scss/**/*.scss',
|
||||
'./node_modules/@hyas/doks-core/assets/scss/components/_code.scss',
|
||||
'./node_modules/@hyas/doks-core/assets/scss/components/_expressive-code.scss',
|
||||
'./node_modules/@hyas/doks-core/assets/scss/common/_syntax.scss',
|
||||
]),
|
||||
],
|
||||
}),
|
||||
],
|
||||
}
|
||||
plugins: [
|
||||
autoprefixer(),
|
||||
purgecss({
|
||||
content: ['./hugo_stats.json'],
|
||||
extractors: [
|
||||
{
|
||||
extractor: (content) => {
|
||||
const els = JSON.parse(content).htmlElements;
|
||||
return els.tags.concat(els.classes, els.ids);
|
||||
},
|
||||
extensions: ['json']
|
||||
}
|
||||
],
|
||||
dynamicAttributes: [
|
||||
'aria-expanded',
|
||||
'data-bs-popper',
|
||||
'data-bs-target',
|
||||
'data-bs-theme',
|
||||
'data-dark-mode',
|
||||
'data-global-alert',
|
||||
'data-pane', // tabs.js
|
||||
'data-popper-placement',
|
||||
'data-sizes',
|
||||
'data-toggle-tab', // tabs.js
|
||||
'id',
|
||||
'size',
|
||||
'type'
|
||||
],
|
||||
safelist: [
|
||||
'active',
|
||||
'btn-clipboard', // clipboards.js
|
||||
'clipboard', // clipboards.js
|
||||
'disabled',
|
||||
'hidden',
|
||||
'modal-backdrop', // search-modal.js
|
||||
'selected', // search-modal.js
|
||||
'show',
|
||||
'img-fluid',
|
||||
'blur-up',
|
||||
'lazyload',
|
||||
'lazyloaded',
|
||||
'alert-link',
|
||||
'container-fw ',
|
||||
'container-lg',
|
||||
'container-fluid',
|
||||
'offcanvas-backdrop',
|
||||
'figcaption',
|
||||
'dt',
|
||||
'dd',
|
||||
'showing',
|
||||
'hiding',
|
||||
'page-item',
|
||||
'page-link',
|
||||
...whitelister(['./assets/scss/**/*.scss', './node_modules/@hyas/doks-core/assets/scss/components/_code.scss', './node_modules/@hyas/doks-core/assets/scss/components/_expressive-code.scss', './node_modules/@hyas/doks-core/assets/scss/common/_syntax.scss'])
|
||||
]
|
||||
})
|
||||
]
|
||||
};
|
||||
|
@ -1 +1,2 @@
|
||||
# Overrides for production environment
|
||||
baseurl = "/"
|
||||
|
@ -1,13 +1,13 @@
|
||||
---
|
||||
title : "Welcome to Doks"
|
||||
title: "Welcome to Doks"
|
||||
description: ""
|
||||
lead: "Congrats on setting up a new Doks project!"
|
||||
date: 2023-09-07T16:33:54+02:00
|
||||
lastmod: 2023-09-07T16:33:54+02:00
|
||||
draft: false
|
||||
seo:
|
||||
title: "Welcome to Doks" # custom title (optional)
|
||||
description: "" # custom description (recommended)
|
||||
canonical: "" # custom canonical URL (optional)
|
||||
noindex: false # false (default) or true
|
||||
title: "Welcome to Doks" # custom title (optional)
|
||||
description: "" # custom description (recommended)
|
||||
canonical: "" # custom canonical URL (optional)
|
||||
noindex: false # false (default) or true
|
||||
---
|
||||
|
15
netlify.toml
15
netlify.toml
@ -3,27 +3,28 @@
|
||||
functions = "functions"
|
||||
|
||||
[build.environment]
|
||||
NODE_VERSION = "18.16.1"
|
||||
NPM_VERSION = "9.5.1"
|
||||
NODE_VERSION = "20.11.0"
|
||||
NPM_VERSION = "10.2.4"
|
||||
HUGO_VERSION = "0.125.1"
|
||||
|
||||
[context.production]
|
||||
command = "pnpm build"
|
||||
command = "npm run build"
|
||||
|
||||
[context.deploy-preview]
|
||||
command = "pnpm build -- -b $DEPLOY_PRIME_URL"
|
||||
command = "npm run build -- -b $DEPLOY_PRIME_URL"
|
||||
|
||||
[context.branch-deploy]
|
||||
command = "pnpm build -- -b $DEPLOY_PRIME_URL"
|
||||
command = "npm run build -- -b $DEPLOY_PRIME_URL"
|
||||
|
||||
[context.next]
|
||||
command = "pnpm build"
|
||||
command = "npm run build"
|
||||
|
||||
[context.next.environment]
|
||||
HUGO_ENV = "next"
|
||||
|
||||
[dev]
|
||||
framework = "#custom"
|
||||
command = "pnpm dev"
|
||||
command = "npm run dev"
|
||||
targetPort = 1313
|
||||
port = 8888
|
||||
publish = "public"
|
||||
|
7026
package-lock.json
generated
7026
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
60
package.json
60
package.json
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "doks",
|
||||
"version": "1.4.1",
|
||||
"version": "1.6.2",
|
||||
"description": "Doks theme",
|
||||
"author": "Hyas",
|
||||
"license": "MIT",
|
||||
@ -9,49 +9,31 @@
|
||||
"url": "https://github.com/gethyas/doks.git"
|
||||
},
|
||||
"scripts": {
|
||||
"dev": "exec-bin node_modules/.bin/hugo/hugo server --bind=0.0.0.0 --disableFastRender --baseURL=http://localhost --noHTTPCache",
|
||||
"dev:drafts": "exec-bin node_modules/.bin/hugo/hugo server --bind=0.0.0.0 --disableFastRender --baseURL=http://localhost --noHTTPCache --buildDrafts",
|
||||
"create": "exec-bin node_modules/.bin/hugo/hugo new",
|
||||
"lint": "npm run lint:scripts && npm run lint:styles && npm run lint:markdown",
|
||||
"lint:scripts": "eslint --cache assets/js",
|
||||
"lint:styles": "stylelint --cache \"assets/scss/**/*.{css,sass,scss}\"",
|
||||
"lint:markdown": "markdownlint-cli2 \"*.md\" \"content/**/*.md\"",
|
||||
"test": "echo \"Error: no test specified\" && exit 1",
|
||||
"build": "exec-bin node_modules/.bin/hugo/hugo --minify",
|
||||
"preview": "http-server --gzip --brotli --ext=html --cors",
|
||||
"clean": "npm run clean:build && npm run clean:lint && npm run clean:install",
|
||||
"clean:build": "shx rm -rf public resources .hugo_build.lock",
|
||||
"clean:install": "shx rm -rf node_modules package-lock.json yarn.lock pnpm-lock.yaml",
|
||||
"clean:lint": "shx rm -rf .eslintcache .stylelintcache",
|
||||
"preinfo": "npm version",
|
||||
"info": "npm list",
|
||||
"postinfo": "exec-bin node_modules/.bin/hugo/hugo version",
|
||||
"postinstall": "hugo-installer --version otherDependencies.hugo --extended --destination node_modules/.bin/hugo",
|
||||
"version": "auto-changelog -p && git add CHANGELOG.md"
|
||||
"create": "hugo new",
|
||||
"dev": "hugo server --disableFastRender --noHTTPCache",
|
||||
"format": "prettier **/** -w -c",
|
||||
"build": "hugo --minify --gc",
|
||||
"preview": "vite preview --outDir public"
|
||||
},
|
||||
"dependencies": {
|
||||
"@hyas/doks-core": "^1.4.1",
|
||||
"@hyas/images": "^3.1.0",
|
||||
"@hyas/inline-svg": "^1.0.5",
|
||||
"@hyas/seo": "^2.1.0",
|
||||
"@tabler/icons": "^2.40.0",
|
||||
"exec-bin": "^1.0.0",
|
||||
"gethyas": "^2.2.2",
|
||||
"hugo-installer": "^4.0.1"
|
||||
"@hyas/doks-core": "^1.6.1",
|
||||
"@hyas/images": "^3.2.0",
|
||||
"@hyas/inline-svg": "^1.1.0",
|
||||
"@hyas/seo": "^2.3.0",
|
||||
"@tabler/icons": "^3.2.0",
|
||||
"gethyas": "^2.4.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
"auto-changelog": "^2.4.0",
|
||||
"shx": "^0.3.4"
|
||||
},
|
||||
"otherDependencies": {
|
||||
"hugo": "0.123.7"
|
||||
},
|
||||
"overrides": {
|
||||
"semver": "^7.5.4"
|
||||
"@changesets/changelog-github": "^0.5.0",
|
||||
"@changesets/cli": "^2.27.1",
|
||||
"prettier": "^3.2.5",
|
||||
"vite": "^5.2.10"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=18.14.1",
|
||||
"pnpm": ">=8.10.0"
|
||||
"node": ">=20.11.0"
|
||||
},
|
||||
"packageManager": "pnpm@8.12.0"
|
||||
"publishConfig": {
|
||||
"access": "public",
|
||||
"registry": "https://registry.npmjs.org/"
|
||||
}
|
||||
}
|
||||
|
@ -14,4 +14,4 @@ seo:
|
||||
|
||||
L'association [RésiLien](https://resilien.fr) met à disposition des outils informatiques.
|
||||
|
||||
Ses outils sont disponibles pour les acteurs travaillant sur le projet LaMelio. Pour la création d'un compte vous pouvez faire la demande sur [compte@lamelio.fr](mailto:compte@lamelio.fr).
|
||||
Ses outils sont disponibles pour les acteurs travaillant sur le projet LaMelio. Pour la création d'un compte, vous pouvez faire la demande sur [compte@lamelio.fr](mailto:compte@lamelio.fr).
|
||||
|
@ -1,4 +1,5 @@
|
||||
- name: nextcloud
|
||||
- name: hedgedoc
|
||||
- name: outline
|
||||
- name: vikunja
|
||||
- name: vaultwarden
|
||||
|
@ -12,4 +12,4 @@ seo:
|
||||
noindex: false # false (default) or true
|
||||
---
|
||||
|
||||
L'association [RésiLien](https://resilien.fr) met à disposition des outils informatiques open source. Ses outils sont disponibles pour les acteurs travaillant sur le projet P4Pillon. Voir [ce guide](/docs/introduction/gestion-de-votre-compte) pour la création d'un compte ou la réinitialisation de votre mot de passe.
|
||||
L'association [RésiLien](https://resilien.fr) met à disposition des outils informatiques open source. Ses outils sont disponibles pour les acteurs travaillant sur le projet P4Pillon. Voir [ce guide](/docs/introduction/gestion-de-votre-compte/) pour la création d'un compte ou la réinitialisation de votre mot de passe.
|
||||
|
@ -2,6 +2,8 @@
|
||||
uptimekuma: 24
|
||||
- name: outline
|
||||
uptimekuma: 69
|
||||
- name: grist
|
||||
uptimekuma: 96
|
||||
- name: element
|
||||
link: https://matrix.to/#/#p4pillon-sante:converser.eu
|
||||
canal: "#p4pillon-sante"
|
||||
@ -9,12 +11,12 @@
|
||||
uptimekuma: 71
|
||||
- name: vaultwarden
|
||||
uptimekuma: 72
|
||||
- name: directus
|
||||
subdomain: formulaire
|
||||
uptimekuma: 43
|
||||
- name: gitea
|
||||
uptimekuma: 67
|
||||
- name: listmonk
|
||||
uptimekuma: 42
|
||||
- name: directus
|
||||
subdomain: formulaire
|
||||
uptimekuma: 43
|
||||
- name: metabase
|
||||
uptimekuma: 70
|
||||
|
13
portails/avecsante.app/content/_index.md
Normal file
13
portails/avecsante.app/content/_index.md
Normal file
@ -0,0 +1,13 @@
|
||||
---
|
||||
title : "Outils numériques libres de <a href='https://avecsante.fr'>AVECsanté</a>"
|
||||
description: ""
|
||||
lead: "Ce site web vous met à disposition de multiples services utiles pour collaborer, partager et avoir une vie numérique plus <a href='/docs/introduction/vie-numérique/'>« saine »</a> au sein de l'association <a href='https://avecsante.fr'>AVECsanté</a>."
|
||||
date: 2023-09-07T16:33:54+02:00
|
||||
lastmod: 2023-09-07T16:33:54+02:00
|
||||
draft: false
|
||||
seo:
|
||||
title: "Outils numériques libres de AVECsanté" # custom title (optional)
|
||||
description: "Ce site web vous met à disposition de multiples services utiles pour collaborer, partager et avoir une vie numérique plus « saine » au sein de l'association AVECsanté." # custom description (recommended)
|
||||
canonical: "" # custom canonical URL (optional)
|
||||
noindex: false # false (default) or true
|
||||
---
|
15
portails/avecsante.app/data/services.yml
Normal file
15
portails/avecsante.app/data/services.yml
Normal file
@ -0,0 +1,15 @@
|
||||
- name: nextcloud
|
||||
uptimekuma: 75
|
||||
- name: outline
|
||||
uptimekuma: 76
|
||||
subdomain: notes
|
||||
- name: grist
|
||||
- name: element
|
||||
link: https://element.avecsante.app/#/room/#entraide:matrix.avecsante.app
|
||||
canal: "#Entraide"
|
||||
- name: vikunja
|
||||
uptimekuma: 77
|
||||
- name: vaultwarden
|
||||
uptimekuma: 78
|
||||
- name: signaturepdf
|
||||
uptimekuma: 81
|
@ -1,9 +1,9 @@
|
||||
- name: hedgedoc
|
||||
- name: mobilizon
|
||||
# - name: hedgedoc
|
||||
# - name: mobilizon
|
||||
- name: signaturepdf
|
||||
- name: nextcloud
|
||||
subscription: true
|
||||
subscription: true
|
||||
- name: vikunja
|
||||
subscription: true
|
||||
- name: vaultwarden
|
||||
subscription: true
|
||||
subscription: true
|
||||
# - name: vaultwarden
|
||||
# subscription: true
|
||||
|
@ -21,6 +21,6 @@ Pas de panique, vous êtes au bon endroit pour en savoir plus. ☺️
|
||||
|
||||
Vous voici actuellement dans le centre de documentation de la suite collaborative d'outils open source proposée et hébergée par [RésiLien](https://resilien.fr). Vous retrouverez la documentation des différents outils proposés.
|
||||
|
||||
Nous méttons en place ce portail pour vous failitez leurs comprenhsions.
|
||||
Nous mettons en place ce portail pour vous faciliter leurs compréhensions.
|
||||
|
||||
N'hésitez pas à nous faire des retours, ou nous poser des questions pour nous permettre de l'améliorer.
|
||||
|
@ -14,24 +14,24 @@ seo:
|
||||
noindex: false # false (default) or true
|
||||
---
|
||||
|
||||
Pour avoir un compte sur cette plateforme vous devez faire partie de l'organisation. Vous pouvez envoyer un mail à {{< support >}} avec votre prénom et votre nom.
|
||||
Pour avoir un compte sur cette plateforme, vous devez faire partie de l'organisation. Vous pouvez envoyer un mail à {{< support_mail >}} avec votre prénom et votre nom.
|
||||
|
||||
La personne en charge de créer les comptes vous contactera par la suite.
|
||||
|
||||
## Authelia
|
||||
|
||||
Authelia est l'outil d'authentification de ce portail. Il permet de vous authentifier automatiquement à l'ensemble des outils que l'on vous propose. Pour information, il utilise le protocole [OpenID Connect](https://fr.wikipedia.org/wiki/OpenID_Connect) permettant de s'authentifier à un seul endroit et d'accéder de façon sécurisée à de multiples outils. La plupart des <abbr title="Google (Alphabet), Apple, Facebook (Meta), Amazon et Microsoft...">GAFAM</abbr> utilisent ce protocole pour simplifier le passage d'un outil à l'autre.
|
||||
Authelia est l'outil d'authentification de ce portail. Il permet de vous authentifier automatiquement à l'ensemble des outils que l'on vous propose. Pour information, il utilise le protocole [OpenID Connect](https://fr.wikipedia.org/wiki/OpenID_Connect) permettant de s'authentifier à un seul endroit et d'accéder de façon sécurisée à de multiples outils. La plupart des multinationales du numérique utilisent ce protocole pour simplifier le passage d'un outil à l'autre.
|
||||
|
||||
## Réinitialiser votre mot de passe
|
||||
|
||||
Voici la procédure pour réinitialiser votre mot de passe depuis Authelia:
|
||||
|
||||
1. Aller sur [la page de réinitialisation de mot de passe](https://auth.{{< domain >}}/reset-password/step1).
|
||||
1. Rentrer votre email et cliquer sur le bouton « Réinitialiser ».
|
||||
1. Rentrer votre email et cliquer sur le bouton « Réinitialiser ».
|
||||
Attendez quelques secondes, vous devriez recevoir un mail d'Authelia.
|
||||
1. Cliquer sur le bouton « _<abbr title="Réinitialiser en Anglais">Reset</abbr>_ » dans le mail.
|
||||
1. Remplir les deux champs et cliquer sur le bouton « Réinitialiser ».
|
||||
1. Se connecter avec son nouveau mot de passe.
|
||||
1. Se connecter avec son nouveau mot de passe.
|
||||
Vous devriez être redirigé vers l'accueil de ce portail.
|
||||
|
||||
Si vous rencontrez un problème veuillez lire « [☝️ Demander de l'aide](/docs/introduction/demander-de-laide) ».
|
||||
Si vous rencontrez un problème, veuillez lire « [☝️ Demander de l'aide](/docs/introduction/demander-de-laide/) ».
|
||||
|
@ -23,14 +23,8 @@ Dans le cas où ce centre de documentation ne suffirait pas.
|
||||
|
||||
Vous ne trouvez pas ce que vous cherchez ? Voici les moyens à disposition pour demander de l’aide.
|
||||
|
||||
## Le canal #LaMelio sur Matrix
|
||||
{{% support_matrix %}}
|
||||
|
||||
Un espace de discussion dédié à l’entraide entre collègues est à votre disposition dans la messagerie instantanée Matrix.
|
||||
## Par mail
|
||||
|
||||
À retrouver [ici](https://matrix.to/#/#LaMelio-Entraide:matrix.interhop.org) !
|
||||
|
||||
Que vous soyez de celles et ceux qui ont des questions ou plutôt de celles et ceux qui maitrisent l’outil, c’est l’endroit parfait pour vous retrouver et échanger vos connaissances.
|
||||
|
||||
## Support
|
||||
|
||||
Vous pouvez nous contacter par email en écrivant à {{< support >}}
|
||||
Vous pouvez nous contacter par email en écrivant à {{< support_mail >}}
|
||||
|
@ -14,9 +14,9 @@ seo:
|
||||
noindex: false # false (default) or true
|
||||
---
|
||||
|
||||
Le numérique est partout, mais nous prenons peu de recul sur cet outil. Rappelons qu'il doit nous faciliter notre collaboration et ainsi permettre d'être plus efficace dans notre travail.
|
||||
Les outils numériques sont partout, mais nous prenons peu de recul dessus. Rappelons qu'ils doivent nous faciliter notre collaboration et ainsi permettre d'être plus efficace dans notre travail.
|
||||
|
||||
Vu les révolution sans précédente que nous vivons (extinction massive, changement climatique...), il faut le rappeler que l'informatique reste un outil non soutenable sur du long terme. Si vous voulez plus d'information, lisez ou écoutez l'épisode « [Incompatibilités des transitions numérique et écologique](https://techologie.net/episodes/86-transitions-numerique-et-ecologique-incompatibles/) » de [Techologie](https://techologie.net/).
|
||||
Vu les révolutions sans précédente que nous vivons (extinction massive, changement climatique...), il faut le rappeler que l'informatique reste un outil non soutenable sur du long terme. Si vous voulez plus d'information, lisez ou écoutez l'épisode « [Incompatibilités des transitions numérique et écologique](https://techologie.net/episodes/86-transitions-numerique-et-ecologique-incompatibles/) » de _[Techologie](https://techologie.net/)_.
|
||||
|
||||
## Hébergement
|
||||
|
||||
@ -26,9 +26,9 @@ Vu les révolution sans précédente que nous vivons (extinction massive, change
|
||||
>
|
||||
> <cite>Slogan de RésiLien</cite>
|
||||
|
||||
Nous proposons des outils Open Source permettant de se libérer des <abbr title="Google (Alphabet), Apple, Facebook (Meta), Amazon et Microsoft...">GAFAM</abbr>. Ils sont hébergés directement en France sur des micro-serveurs à faible impact énergétique.
|
||||
Nous proposons des outils Open Source permettant de se libérer des multinationales du numérique. Ils sont hébergés directement en France sur des micro-serveurs à faible impact énergétique.
|
||||
|
||||
Nous devons reprendre le contrôle de nos logiciels mais aussi de nos données, c'est tout l'enjeu de cette plateforme !
|
||||
Nous devons reprendre le contrôle de nos logiciels, mais aussi de nos données, c'est tout l'enjeu de cette plateforme !
|
||||
|
||||
## Sauvegarde
|
||||
|
||||
|
@ -33,7 +33,7 @@ Le site web [https://apps.p4pillon.org](https://apps.p4pillon.org) est hébergé
|
||||
|
||||
## Développement et Maintenance
|
||||
|
||||
Le site web [https://apps.p4pillon.org](https://apps.p4pillon.org) a été réalisé de façon éco-responsable par [RésiLien](https://resilien.fr).
|
||||
Le site web [https://apps.p4pillon.org](https://apps.p4pillon.org) a été réalisé de façon écoresponsable par [RésiLien](https://resilien.fr).
|
||||
|
||||
## Liens hypertextes
|
||||
|
||||
|
@ -26,6 +26,15 @@ services:
|
||||
description: Gitea est une forge logicielle libre pour collaborer autour de développement logiciel et la **gestion du code source**.
|
||||
subdomain: forge
|
||||
doc: /docs/gitea/forge-logicielle/
|
||||
grist:
|
||||
tool:
|
||||
name: Grist
|
||||
link: https://www.getgrist.com/
|
||||
title: Tableur en ligne
|
||||
icon: table-heart
|
||||
description: Un puissant tableur en ligne permettant de **saisir et manipuler** collaborativement des données numériques.
|
||||
subdomain: grist
|
||||
doc: /docs/grist/tableur/
|
||||
hedgedoc:
|
||||
tool:
|
||||
name: Hedgedoc
|
||||
@ -41,7 +50,7 @@ services:
|
||||
link: https://listmonk.app/
|
||||
title: Infolettre
|
||||
icon: mail-fast
|
||||
description: Gestionnaire de **listes de diffusion** et d'infolettre avec envoie possible par mail ou SMS.
|
||||
description: Gestionnaire de **listes de diffusion** et d'infolettre avec envoi possible par mail ou SMS.
|
||||
subdomain: infolettre
|
||||
doc: /docs/listmonk/infolettre/
|
||||
metabase:
|
||||
|
@ -14,9 +14,7 @@ seo:
|
||||
noindex: false # false (default) or true
|
||||
---
|
||||
|
||||
{{< callout context="tip" title="Information" icon="info-circle" >}}
|
||||
{{< informations service="directus">}}
|
||||
{{< /callout >}}
|
||||
{{< informations service="directus" >}}
|
||||
|
||||
## Présentation de Directus
|
||||
|
||||
@ -28,18 +26,18 @@ seo:
|
||||
> Les saveurs SQL viennent toutes avec des types de données légèrement différents et des idiosyncrasies. Directus utilise Database Introspection pour lire votre structure de base de données et créer une couche d'abstraction pour gérer tous les détails nitty-gritty en coulisses. Cette technique fonctionne parfaitement avec toute base de données SQL majeure. Il vous permet également de lier Directus à votre base de données nouvelle ou préexistante ou de la supprimer à tout moment, sans impact sur votre modèle de données existant. Cela signifie que vous ne rencontrerez jamais le vendeur verrouillé.
|
||||
>
|
||||
> ### L'application et les API
|
||||
> Une fois votre base de données introspectée et abstraite, Directus génère dynamiquement les paramètres d'API REST et GraphQL pour gérer vos données avec un contrôle granulaire. Vous obtenez également des outils CLI pour la gestion de fichiers et un SDK JavaScript complet.
|
||||
> Une fois votre base de données introspectée et abstraite, Directus génère dynamiquement les paramètres d'API REST et GraphQL pour gérer vos données avec un contrôle granulaire. Vous obtenez de plus des outils CLI pour la gestion de fichiers et un SDK JavaScript complet.
|
||||
>
|
||||
> L'API et CLI alimentent l'application sans code. En d'autres termes, l'application n'est qu'une interface graphique qui fournit un accès sans code à l'API. Cette architecture permet à Directus de démocratiser la base de données et de contrôler toute l'équipe.
|
||||
>
|
||||
> ### Source ouverte, modulaire, extensible, évolutive
|
||||
> Au plus haut niveau, Directus organise ses fonctionnalités en modules. Chaque module vous permet d'interagir avec les données d'une manière spécifique, comme la gestion des données et du contenu, la gestion des actifs de fichiers numériques, la création de tableaux de bord analytiques de glisser-déposer ou autre. Si vous trouvez que Directus manque quelque chose dont votre projet a besoin, aucun problème !
|
||||
> Au plus haut niveau, Directus organise ses fonctionnalités en modules. Chaque module vous permet d'interagir avec les données d'une manière spécifique, comme la gestion des données et du contenu, la gestion des actifs de fichiers numériques, la création de tableaux de bord analytiques, de glisser-déposer ou autre. Si vous trouvez que Directus manque quelque chose dont votre projet a besoin, aucun problème !
|
||||
>
|
||||
> Construit entièrement dans Typescript, principalement sur Node.js et Vue.js, Directus est 100% open-source, modulaire et extensible, garantissant que votre projet ne touche jamais un plafond de fonctionnalités difficiles. La plateforme s'échelle sans problème, et certains Projets ont des centaines de millions d'utilisateurs.
|
||||
>
|
||||
> Vous pouvez l'utiliser avec n'importe quelle _stack_ ou _framework frontend_.
|
||||
>
|
||||
> ### Options de configuration personnalisées
|
||||
> De nombreuses options de configuration sont également disponibles en tant que variables globales dans la base de codes. Les développeurs peuvent configurer sur mesure la méthode d'authentification SSO, les détails de cache, l'emplacement de stockage de fichiers par défaut (local, S3, google, etc.) pour les actifs numériques, les courriels et les muc
|
||||
> De nombreuses options de configuration sont également disponibles en tant que variables globales dans la base de codes. Les développeurs peuvent configurer sur mesure la méthode d'authentification SSO, les détails de cache, l'emplacement de stockage de fichiers par défaut (local, S3, Google, etc.) pour les actifs numériques, les courriels et les muc
|
||||
>
|
||||
> <cite>Traduction de [la présentation](https://docs.directus.io/getting-started/introduction.html) par Directus</cite>
|
||||
|
@ -14,10 +14,7 @@ seo:
|
||||
noindex: false # false (default) or true
|
||||
---
|
||||
|
||||
|
||||
{{< callout context="tip" title="Information" icon="info-circle" >}}
|
||||
{{< informations service="element">}}
|
||||
{{< /callout >}}
|
||||
{{< informations service="element" >}}
|
||||
|
||||
## Présentation d'Element
|
||||
|
||||
@ -25,7 +22,7 @@ seo:
|
||||
>
|
||||
> Element prend en charge le chiffrement de bout en bout, le fonctionnement par groupes (appelé espaces), l'existence de salons et le partage de fichiers entre utilisateurs. L'inscription ne requiert pas de numéro de téléphone.
|
||||
>
|
||||
> <cite>Source [Wikipedia](https://fr.wikipedia.org/wiki/Element_(logiciel))</cite>
|
||||
> <cite>Source [Wikipédia](https://fr.wikipedia.org/wiki/Element_(logiciel))</cite>
|
||||
|
||||
## Créer un compte
|
||||
|
@ -14,13 +14,10 @@ seo:
|
||||
noindex: false # false (default) or true
|
||||
---
|
||||
|
||||
|
||||
{{< callout context="tip" title="Information" icon="info-circle" >}}
|
||||
{{< informations service="gitea">}}
|
||||
{{< /callout >}}
|
||||
{{< informations service="gitea" >}}
|
||||
|
||||
## Présentation de Gitea
|
||||
|
||||
> [Gitea](https://about.gitea.com/) est une forge logicielle libre en Go sous licence MIT, pour l'hébergement de développement logiciel, basé sur le logiciel de gestion de versions Git pour la gestion du code source, comportant un système de suivi des bugs, un wiki, ainsi que des outils pour la relecture de code. Il comporte également un système d'extension, fournissant notamment de l'intégration continue, avec les plugins Agola, appveyor, Concourse, Metroline ainsi que de la livraison continue avec drone et Metroline.
|
||||
> [Gitea](https://about.gitea.com/) est une forge logicielle libre en Go, sous licence MIT, pour l'hébergement de développement logiciel, basé sur le logiciel de gestion de versions Git pour la gestion du code source, comportant un système de suivi des bugs, un wiki, ainsi que des outils pour la relecture de code. Il comporte également un système d'extension, fournissant notamment de l'intégration continue, avec les plugins Agola, appveyor, Concourse, Metroline ainsi que de la livraison continue avec drone et Metroline.
|
||||
>
|
||||
> <cite>Source [Wikipedia](https://fr.wikipedia.org/wiki/Element_(logiciel))
|
||||
> <cite>Source [Wikipédia](https://fr.wikipedia.org/wiki/Element_(logiciel))
|
@ -14,9 +14,7 @@ seo:
|
||||
noindex: false # false (default) or true
|
||||
---
|
||||
|
||||
{{< callout context="tip" title="Information" icon="info-circle" >}}
|
||||
{{< informations service="hedgedoc">}}
|
||||
{{< /callout >}}
|
||||
{{< informations service="hedgedoc" >}}
|
||||
|
||||
## Présentation de HedgeDoc
|
||||
|
||||
|
@ -14,9 +14,7 @@ seo:
|
||||
noindex: false # false (default) or true
|
||||
---
|
||||
|
||||
{{< callout context="tip" title="Information" icon="info-circle" >}}
|
||||
{{< informations service="listmonk">}}
|
||||
{{< /callout >}}
|
||||
{{< informations service="listmonk" >}}
|
||||
|
||||
## Présentation de Listmonk
|
||||
|
||||
@ -26,7 +24,11 @@ seo:
|
||||
> - **Listes d'envoi** : Gérer des millions d'abonnés sur de nombreuses listes d'opt-in simples et doubles avec des attributs JSON personnalisés pour chaque abonné. Interroger et segmenter les abonnés avec des expressions SQL.
|
||||
> - **Import de liste rapide** : (~10k enregistrements par seconde) ou utilisez des API HTTP/JSON ou interagissez avec le schéma de table simplement pour intégrer des CRM externes et des bases de données d'abonnés.
|
||||
> - **Mails transactionnels** : API simple pour envoyer des messages transactionnels aux abonnés en utilisant des modèles prédéfinis. Envoyer des messages comme e-mail, SMS, Whatsapp messages ou tout support via les interfaces de messageries.
|
||||
> - **Analaytique** : Analaytique simple avec la visualisation de graphique. Connectez facilement les programmes de visualisation externes à la base de données avec la structure simple de la base de données.
|
||||
> - **Modèles** : Créez des modèles d'e-mail puissants et dynamiques avec le système de template du langage Go. Utilisez les expressions de modèles, la logique et une centaine de fonction directement dans l'objet et le contenu de votre message. Écrivez des e-mails HTML dans un éditeur WYSIWYG, Markdown, HTML brut, ou simplement du texte simple.
|
||||
> - **Analytique** : Analytique simple avec la visualisation de graphique. Connectez facilement les programmes de visualisation externes à la base de données avec la structure simple de la base de données.
|
||||
> - **Modèles** : Créez des modèles d'e-mail puissants et dynamiques avec le système de template du langage Go. Utilisez les expressions de modèles, la logique et une centaine de fonctions directement dans l'objet et le contenu de votre message. Écrivez des e-mails HTML dans un éditeur WYSIWYG, Markdown, HTML brut, ou facilement du texte simple.
|
||||
>
|
||||
> <cite>Traduction de [la présentation](https://listmonk.app/) par Listmonk</cite>
|
||||
> <cite>Traduction de [la présentation](https://listmonk.app/) par Listmonk</cite>
|
||||
|
||||
## 💔 Limitation
|
||||
|
||||
- Listmonk n'est actuellement pas prévu pour gérer plusieurs comptes utilisateurs. Cette fonction devrait arriver [prochainement](https://github.com/knadh/listmonk/pull/1701).
|
||||
|
@ -14,9 +14,7 @@ seo:
|
||||
noindex: false # false (default) or true
|
||||
---
|
||||
|
||||
{{< callout context="tip" title="Information" icon="info-circle" >}}
|
||||
{{< informations service="metabase">}}
|
||||
{{< /callout >}}
|
||||
{{< informations service="metabase" >}}
|
||||
|
||||
## Présentation de Metabase
|
||||
|
||||
|
18
portails/shared/docs/mobilizon/_index.md
Normal file
18
portails/shared/docs/mobilizon/_index.md
Normal file
@ -0,0 +1,18 @@
|
||||
---
|
||||
title: "Mobilizon"
|
||||
description: "Guides lead a user through a specific task they want to accomplish, often with a sequence of steps."
|
||||
summary: ""
|
||||
date: 2023-09-07T16:04:48+02:00
|
||||
lastmod: 2023-09-07T16:04:48+02:00
|
||||
draft: false
|
||||
weight: 650
|
||||
toc: true
|
||||
icon: speakerphone
|
||||
sidebar:
|
||||
collapsed: false
|
||||
seo:
|
||||
title: "" # custom title (optional)
|
||||
description: "" # custom description (recommended)
|
||||
canonical: "" # custom canonical URL (optional)
|
||||
noindex: false # false (default) or true
|
||||
---
|
17
portails/shared/docs/mobilizon/rassembler.md
Normal file
17
portails/shared/docs/mobilizon/rassembler.md
Normal file
@ -0,0 +1,17 @@
|
||||
---
|
||||
title: "Rassembler"
|
||||
description: "Bienvenue dans Nextcloud : Un espace sécurisé pour toutes vos données."
|
||||
summary: ""
|
||||
date: 2023-09-07T16:04:48+02:00
|
||||
lastmod: 2023-09-07T16:04:48+02:00
|
||||
draft: false
|
||||
weight: 710
|
||||
toc: true
|
||||
seo:
|
||||
title: "" # custom title (optional)
|
||||
description: "" # custom description (recommended)
|
||||
canonical: "" # custom canonical URL (optional)
|
||||
noindex: false # false (default) or true
|
||||
---
|
||||
|
||||
{{< informations service="mobilizon" >}}
|
@ -14,16 +14,14 @@ seo:
|
||||
noindex: false # false (default) or true
|
||||
---
|
||||
|
||||
{{< callout context="tip" title="Information" icon="info-circle" >}}
|
||||
{{< informations service="nextcloud">}}
|
||||
{{< /callout >}}
|
||||
{{< informations service="nextcloud" >}}
|
||||
|
||||
## Présentation de Nextcloud
|
||||
|
||||
> Nextcloud vous permet de stocker vos fichiers (documents, photos, vidéos, etc.), vos contacts, vos calendriers.
|
||||
>
|
||||
> Toutes vos données sont ainsi accessibles depuis n'importe quel navigateur. Il est également possible de les synchroniser grâce aux logiciels clients sur votre ordinateur mais aussi votre téléphone ([Windows, Mac, Linux, iOS, Android, Windows Mobile](https://nextcloud.com/fr/install/)).
|
||||
> Toutes vos données sont ainsi accessibles depuis n'importe quel navigateur. Il est également possible de les synchroniser grâce aux logiciels clients sur votre ordinateur, mais aussi votre téléphone ([Windows, Mac, Linux, iOS, Android, Windows Mobile](https://nextcloud.com/fr/install/)).
|
||||
>
|
||||
> Des fonctionnalités avancées de partage sont proposées sûr, sécurisé et efficace (à durée limitée et/ou avec mot de passe par exemple).
|
||||
> Des fonctionnalités avancées de partage sont proposées (à durée limitée et/ou avec mot de passe par exemple).
|
||||
>
|
||||
> <cite>Source [Framalibre](https://framalibre.org/content/nextcloud)</cite>
|
||||
> <cite>Inspiration [Framalibre](https://framalibre.org/content/nextcloud)</cite>
|
||||
|
@ -1,43 +1,38 @@
|
||||
---
|
||||
title: "Prise de notes"
|
||||
description: "Bienvenue dans Nextcloud : Un espace sécurisé pour toutes vos données."
|
||||
summary: ""
|
||||
date: 2023-09-07T16:04:48+02:00
|
||||
lastmod: 2023-09-07T16:04:48+02:00
|
||||
draft: false
|
||||
weight: 510
|
||||
toc: true
|
||||
seo:
|
||||
title: "" # custom title (optional)
|
||||
description: "" # custom description (recommended)
|
||||
canonical: "" # custom canonical URL (optional)
|
||||
noindex: false # false (default) or true
|
||||
---
|
||||
|
||||
{{< callout context="tip" title="Information" icon="info-circle" >}}
|
||||
{{< informations service="outline">}}
|
||||
{{< /callout >}}
|
||||
|
||||
## Présentation de Outline
|
||||
|
||||
La base de connaissances la plus rapide pour les équipes en pleine croissance. Magnifique, collaborative en temps réel, dotée de nombreuses fonctionnalités et compatible avec le [format markdown](https://fr.wikipedia.org/wiki/Markdown).
|
||||
|
||||
## 📜 Modèle
|
||||
|
||||
Il est possible de faire des modèles dans Outline permettant de normaliser une partie des documents d’une collection.
|
||||
|
||||
Vous pouvez retrouvez comme exemple le modèle des réunions. Pour l’utiliser, vous devez ajouter un document dans la collection. Puis expliciter le modèle à suivre en haut à droite.
|
||||
|
||||
## 💔 Limitation
|
||||
|
||||
- Lorsque l’on se déconnecte depuis l’application ça ne vous déconnecte pas de l’identification unique (Authelia), il faut aller sur https://auth.p4pillon.org et cliquer sur déconnecter.
|
||||
Une demande d’implémentation est en cours à cette adresse.
|
||||
- Le descriptif d’une collection ne peut avoir que 1000 caractères… une erreur s’affiche comme quoi le document de
|
||||
- Il n’est actuellement pas possible de permettre à un inconnu de modifier un document, seul les personnes faisant parti de l’équipe peut modifier les documents. Par contre vous pouvez partager un document en lecture seul à l’aide du bouton en haut à droite Parager.
|
||||
Une demande de fonctionnalité a été demandé sur leur forge Git (kesako ?). Il est possible de voir l’avancement de cette fonctionnalité à cette adresse.
|
||||
|
||||
## 🏷️ Licence
|
||||
|
||||
Outline est un outil sous licence « Business Source License 1.1 ». Ce type de licence signifie que le code est accessible au public et qu'il est autorisé à le copier, le modifier ou le redistribuer. Il a cependant une limite. Il ne peut pas être utilisé à des fins commerciales ou de production jusqu'à quatre ans, après quoi il sera converti en licence à usage général (GPL) à perpétuité.
|
||||
|
||||
Ce n’est donc pas vraiment un outil Open Source 😱 de plus en plus d’outils se tournent vers cette licence pour pouvoir dire qu’ils font de l’Open Source sans en faire vraiment... C’est en général pour préserver leur business avec leur service en ligne. Nous espérons pouvoir proposer un équivalent prochainement.
|
||||
---
|
||||
title: "Prise de notes"
|
||||
description: "Bienvenue dans Nextcloud : Un espace sécurisé pour toutes vos données."
|
||||
summary: ""
|
||||
date: 2023-09-07T16:04:48+02:00
|
||||
lastmod: 2023-09-07T16:04:48+02:00
|
||||
draft: false
|
||||
weight: 510
|
||||
toc: true
|
||||
seo:
|
||||
title: "" # custom title (optional)
|
||||
description: "" # custom description (recommended)
|
||||
canonical: "" # custom canonical URL (optional)
|
||||
noindex: false # false (default) or true
|
||||
---
|
||||
|
||||
{{< informations service="outline" >}}
|
||||
|
||||
## Présentation de Outline
|
||||
|
||||
La base de connaissances la plus rapide pour les équipes en pleine croissance. Magnifique, collaborative en temps réel, dotée de nombreuses fonctionnalités et compatible avec le [format markdown](https://fr.wikipedia.org/wiki/Markdown).
|
||||
|
||||
## 📜 Modèle
|
||||
|
||||
Il est possible de faire des modèles dans Outline permettant de normaliser une partie des documents d’une collection.
|
||||
|
||||
Vous pouvez retrouver comme exemple le modèle des réunions. Pour l’utiliser, vous devez ajouter un document dans la collection. Puis expliciter le modèle à suivre en haut à droite.
|
||||
|
||||
## 💔 Limitation
|
||||
|
||||
- Le descriptif d’une collection ne peut avoir que 1000 caractères…
|
||||
- Il n’est actuellement pas possible de permettre à un inconnu de modifier un document, seul les personnes faisant parti de l’équipe peut modifier les documents. [Une demande](https://github.com/outline/outline/discussions/3897) pour ajouter cette fonctionnalité a été faite. Par contre vous pouvez partager un document en lecture seul à l’aide du bouton en haut à droite « Parager ».
|
||||
|
||||
## 🏷️ Licence
|
||||
|
||||
Outline est un outil sous licence « Business Source License 1.1 ». Ce type de licence signifie que le code est accessible au public et qu'il est autorisé à le copier, le modifier ou le redistribuer. Il a cependant une limite. Il ne peut pas être utilisé à des fins commerciales ou de production jusqu'à quatre ans, après quoi il sera converti en licence à usage général (GPL) à perpétuité.
|
||||
|
||||
Ce n’est donc pas vraiment un outil Open Source 😱 de plus en plus d’outils se tournent vers cette licence pour pouvoir dire qu’ils font de l’Open Source sans en faire vraiment... C’est en général pour préserver leur business avec leur service en ligne. Nous espérons pouvoir proposer un équivalent prochainement.
|
||||
|
@ -14,6 +14,4 @@ seo:
|
||||
noindex: false # false (default) or true
|
||||
---
|
||||
|
||||
{{< callout context="tip" title="Information" icon="info-circle" >}}
|
||||
{{< informations service="signaturepdf">}}
|
||||
{{< /callout >}}
|
||||
{{< informations service="signaturepdf" >}}
|
||||
|
@ -14,11 +14,9 @@ seo:
|
||||
noindex: false # false (default) or true
|
||||
---
|
||||
|
||||
{{< callout context="tip" title="Information" icon="info-circle" >}}
|
||||
{{< informations service="vaultwarden">}}
|
||||
{{< /callout >}}
|
||||
{{< informations service="vaultwarden" >}}
|
||||
|
||||
[**Vaultwarden**](https://github.com/dani-garcia/vaultwarden) est un serveur de gestion de mot de passe léger compatible avec les outils de [**Bitwarden**](https://bitwarden.com/) eux aussi open source.
|
||||
[**Vaultwarden**](https://github.com/dani-garcia/vaultwarden) est un serveur de gestion de mot de passe léger compatible avec les outils de [**Bitwarden,**](https://bitwarden.com/), eux aussi, open source.
|
||||
|
||||
## Présentation de Vaultwarden
|
||||
|
||||
@ -35,3 +33,7 @@ seo:
|
||||
> - Données exportables au format JSON
|
||||
>
|
||||
> <cite>Inspiration [Framalibre](https://framalibre.org/content/bitwarden)</cite>
|
||||
|
||||
## 💔 Limitation
|
||||
|
||||
- Vaultwarden ne gère pas encore l'authentification unique, mais ça devrait arriver [prochainement](https://github.com/dani-garcia/vaultwarden/pull/3899).
|
||||
|
@ -14,9 +14,7 @@ seo:
|
||||
noindex: false # false (default) or true
|
||||
---
|
||||
|
||||
{{< callout context="tip" title="Information" icon="info-circle" >}}
|
||||
{{< informations service="vikunja">}}
|
||||
{{< /callout >}}
|
||||
{{< informations service="vikunja" >}}
|
||||
|
||||
## Présentation de Vikunja
|
||||
|
||||
@ -25,17 +23,17 @@ seo:
|
||||
> - la saisie rapide de ces méta-données lors de la création d’une tâche (par exemple, !5 définit la priorité la plus haute)
|
||||
> - les multiples façons de visualiser ses tâches : sous forme de listes, de tableaux, de Gantt chart ou de Kanban
|
||||
> - la possibilité de collaborer à plusieurs
|
||||
> - la création de filtres personnalisés
|
||||
> - la création de filtres personnalisés.
|
||||
>
|
||||
> L’utilisateur peut créer différents « Projets » (par exemple : « Perso » et « Pro ») qui contiendront des listes, qui elles-mêmes accueilleront les tâches.
|
||||
> L’utilisateur peut créer différent « Projets » (par exemple : « Perso » et « Pro ») qui contiendront des listes, qui elles-mêmes accueilleront les tâches.
|
||||
>
|
||||
> <cite>Inspiration [Framalibre](https://framalibre.org/notices/vikunja.html)</cite>
|
||||
|
||||
|
||||
## 💡 Astuce
|
||||
|
||||
- Lors de la création d’une tâche, il y a pleins d’options que l’on peut comprendre à l’aide du bouton ❔ à droite du champ
|
||||
- Lors de la création d’une tâche, il y a de nombreuses options que l’on peut comprendre à l’aide du bouton ❔ à droite du champ.
|
||||
|
||||
## 💔 Limitation
|
||||
|
||||
- Une des limitation dans Vikunja est que nous pouvons pas **pour l'instant** lier automatiquement les personnes à une équipe selon ce que l’on a renseigné dans l’annuaire LDAP. Il faut que ça soit fait à la mains par quelqu'un... [une proposition est en cours](https://kolaente.dev/vikunja/api/pulls/1393) pour ajouter cette fonctionnalité qui va arrvier dans une prochaine version.
|
||||
- Une des limitations dans Vikunja est que nous ne pouvons pas **pour l'instant** lier automatiquement les personnes à une équipe selon ce que l’on a renseigné dans l’annuaire LDAP. Il faut que ça soit fait par une personne ayant l'autorisation. [Une proposition est en cours](https://kolaente.dev/vikunja/api/pulls/1393) pour ajouter cette fonctionnalité qui va arriver dans une prochaine version.
|
||||
|
@ -60,6 +60,7 @@
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
{{ if .RenderString .Content }}
|
||||
<hr>
|
||||
<section class="section container-fluid mt-n3 pb-3">
|
||||
<div class="row justify-content-center">
|
||||
@ -68,6 +69,9 @@
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
{{ else }}
|
||||
<br>
|
||||
{{ end }}
|
||||
{{ end }}
|
||||
|
||||
{{ define "sidebar-footer" }}
|
||||
|
37
portails/shared/layouts/partials/main/blog-meta.html
Normal file
37
portails/shared/layouts/partials/main/blog-meta.html
Normal file
@ -0,0 +1,37 @@
|
||||
<p>
|
||||
<small>
|
||||
{{- time.Format (default ":date_long" .Site.Params.dateFormat) .PublishDate -}}
|
||||
{{- with .Params.categories -}}
|
||||
in
|
||||
{{- range $index, $category := . -}}
|
||||
{{ if gt $index 0 }}, {{ end -}}
|
||||
<a class="stretched-link position-relative link-muted" href="{{ "/categories/" | relLangURL }}{{ . | urlize }}/">{{ . }}</a>
|
||||
{{- end }}
|
||||
{{- end }}
|
||||
{{- with .Params.contributors -}}
|
||||
{{ $last := sub (len .) 1 -}}
|
||||
by
|
||||
{{- range $index, $contributor := . -}}
|
||||
{{- if gt $index 0 }}{{ if eq $index $last }} and {{ else }}, {{ end }}{{ end -}}
|
||||
{{- with $.Site.GetPage "taxonomyTerm" (printf "contributors/%s" (urlize .)) -}}
|
||||
{{ if $.Params.avatar -}}
|
||||
{{ $image := .Resources.GetMatch (printf "**%s" .Params.avatar) -}}
|
||||
{{ $imageLq := $image.Resize "15x15 webp q95" -}}
|
||||
{{ $image = $image.Resize "60x60 webp q95" -}}
|
||||
<img class="rounded-circle w-auto mx-1 lazyload blur-up" src="{{ $imageLq.RelPermalink }}" data-src="{{ $image.RelPermalink }}" alt="{{ .Title }}" width="30" height="30">
|
||||
{{- end }}
|
||||
{{- end -}}
|
||||
<a class="stretched-link position-relative" href="{{ "/contributors/" | relLangURL }}{{ . | urlize }}/">{{ . }}</a>
|
||||
{{- end }}
|
||||
{{- end -}}
|
||||
{{- /* NOTE: classes 'stretched-link position-relative' are necessary to properly display the title attribute on hover */ -}}
|
||||
<span class="stretched-link position-relative reading-time text-nowrap" title="{{ i18n "reading_time" }}">{{/* trim subsequent whitespace */ -}}
|
||||
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-clock" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
|
||||
<path stroke="none" d="M0 0h24v24H0z" fill="none"></path>
|
||||
<path d="M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"></path>
|
||||
<path d="M12 7v5l3 3"></path>
|
||||
</svg>
|
||||
{{- .ReadingTime }} {{ i18n "minute" .ReadingTime -}}
|
||||
</span>{{/* trim subsequent whitespace */ -}}
|
||||
</small>
|
||||
</p>
|
@ -1,8 +1,45 @@
|
||||
{{ $service := partial "portails/get_service" (.Get "service") }}
|
||||
{{- with $service -}}
|
||||
{{ $url := partial "portails/get_service_url" $service }}
|
||||
- <a href="{{ $url }}">Lien vers le service</a>
|
||||
{{ if $service.uptimekuma -}}
|
||||
- Statut du service : {{ if site.Params.uptimeKumaUrl }}<a href="{{ site.Params.uptimeKumaUrl }}">{{ end }}<img src="https://statuts.resilien.fr/api/badge/{{ $service.uptimekuma }}/status?style=flat-square" />{{ if site.Params.uptimeKumaUrl }}</a>{{ end }}
|
||||
{{- end -}}
|
||||
{{- /*
|
||||
Usage: `callout "type"`, where `type` is one of "note" (default), "info", "danger", or "warning"
|
||||
Based on: https://github.com/twbs/bootstrap/blob/283cbd902669732943885e94115a0e29a952baf6/site/layouts/shortcodes/callout.html
|
||||
*/ -}}
|
||||
|
||||
{{- $css_class := "" -}}
|
||||
{{- if .IsNamedParams -}}
|
||||
{{- $css_class = .Get "context" | default "tip" -}}
|
||||
{{- else -}}
|
||||
{{- $css_class = .Get 0 | default "tip" -}}
|
||||
{{- end -}}
|
||||
|
||||
{{- $icon := .Get "icon" | default "info-circle" -}}
|
||||
{{- $title := .Get "title" | default "Information" -}}
|
||||
{{- $service := partial "portails/get_service" (.Get "service") -}}
|
||||
|
||||
{{ if ne $service.services_link false }}
|
||||
<div class="callout callout-{{ $css_class }} d-flex flex-row mt-4 mb-4 pt-4 pe-4 pb-2 ps-3">
|
||||
{{ with $icon -}}
|
||||
{{ partial "inline-svg" (dict "src" $icon "class" "callout-icon me-2 mb-3") }}
|
||||
{{- end }}
|
||||
<div class="callout-content">
|
||||
{{ with $title -}}
|
||||
<div class="callout-title">
|
||||
{{ . | $.Page.RenderString (dict "display" "block") }}
|
||||
</div>
|
||||
{{- end }}
|
||||
<div class="callout-body">
|
||||
{{- with $service -}}
|
||||
{{ $url := partial "portails/get_service_url" $service }}
|
||||
<ul>
|
||||
<li>
|
||||
<a href="{{ $url }}">Lien vers le service</a>
|
||||
</li>
|
||||
{{ if $service.uptimekuma }}
|
||||
<li>
|
||||
Statut du service : {{ if site.Params.uptimeKumaUrl }}<a href="{{ site.Params.uptimeKumaUrl }}">{{ end }}<img src="https://statuts.resilien.fr/api/badge/{{ $service.uptimekuma }}/status?style=flat-square" />{{ if site.Params.uptimeKumaUrl }}</a>{{ end }}
|
||||
</li>
|
||||
{{ end -}}
|
||||
</ul>
|
||||
{{- end -}}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{{- end -}}
|
||||
|
9
portails/shared/layouts/shortcodes/support_matrix.md
Normal file
9
portails/shared/layouts/shortcodes/support_matrix.md
Normal file
@ -0,0 +1,9 @@
|
||||
{{ $element := where .Site.Data.services "name" "element" | first 1 }}
|
||||
{{ range $element }}
|
||||
|
||||
## Par messagerie instantanée
|
||||
|
||||
Un espace de discussion dédié à l’entraide entre collègues est à votre disposition dans la messagerie instantanée qu vous pouvez retrouver [directement ici]({{ .link }}) !
|
||||
|
||||
Que vous soyez de celles et ceux qui ont des questions ou plutôt de celles et ceux qui maitrisent l’outil, c’est l’endroit parfait pour vous retrouver et échanger vos connaissances.
|
||||
{{ end }}
|
Reference in New Issue
Block a user