Compare commits
23 Commits
202401.22.
...
v3.1.0
Author | SHA1 | Date | |
---|---|---|---|
35010d973b | |||
f4837a5d5d | |||
c23054fabc | |||
b498138f6d | |||
b58d28db09 | |||
935853df53 | |||
4a021c933f | |||
9d961ad678 | |||
d60785d799 | |||
755dfaefaa | |||
663969582b | |||
5890464c9e | |||
d3ee46c7ab | |||
e45503469a | |||
913d278533 | |||
ac40c6d717 | |||
005d22babd | |||
f53ffb555f | |||
548d005c21 | |||
1cd6c41715 | |||
022dd5b48b
|
|||
bf02657481
|
|||
eeda5a041e |
3
.changes/1.0.0.md
Normal file
3
.changes/1.0.0.md
Normal file
@@ -0,0 +1,3 @@
|
||||
## 1.0.0 - 2024-01-24
|
||||
### Added
|
||||
* Started brand new website
|
3
.changes/2.0.0.md
Normal file
3
.changes/2.0.0.md
Normal file
@@ -0,0 +1,3 @@
|
||||
## 2.0.0 - 2024-01-24
|
||||
### Changed
|
||||
* Button styling updated to match the other buttons
|
3
.changes/2.1.0.md
Normal file
3
.changes/2.1.0.md
Normal file
@@ -0,0 +1,3 @@
|
||||
## 2.1.0 - 2024-01-29
|
||||
### Changed
|
||||
* Styling language selector improved for visibility and dutch content updated
|
3
.changes/2.2.0.md
Normal file
3
.changes/2.2.0.md
Normal file
@@ -0,0 +1,3 @@
|
||||
## 2.2.0 - 2024-02-01
|
||||
### Fixed
|
||||
* Styling of workflow header in english page
|
3
.changes/2.3.0.md
Normal file
3
.changes/2.3.0.md
Normal file
@@ -0,0 +1,3 @@
|
||||
## 2.3.0 - 2024-02-07
|
||||
### Fixed
|
||||
* Font fixed to work across browsers
|
3
.changes/2.4.0.md
Normal file
3
.changes/2.4.0.md
Normal file
@@ -0,0 +1,3 @@
|
||||
## 2.4.0 - 2024-02-07
|
||||
### Added
|
||||
* Brochure added for downloading
|
3
.changes/3.0.0.md
Normal file
3
.changes/3.0.0.md
Normal file
@@ -0,0 +1,3 @@
|
||||
## 3.0.0 - 2024-04-17
|
||||
### Changed
|
||||
* Change made to website title tag to improve google indexation
|
3
.changes/3.1.0.md
Normal file
3
.changes/3.1.0.md
Normal file
@@ -0,0 +1,3 @@
|
||||
## 3.1.0 - 2024-04-17
|
||||
### Added
|
||||
* Link and qr code added to join matrix chat for developers
|
6
.changes/header.tpl.md
Normal file
6
.changes/header.tpl.md
Normal file
@@ -0,0 +1,6 @@
|
||||
# Changelog
|
||||
All notable changes to this project will be documented in this file.
|
||||
|
||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
||||
adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html),
|
||||
and is generated by [Changie](https://github.com/miniscruff/changie).
|
0
.changes/unreleased/.gitkeep
Normal file
0
.changes/unreleased/.gitkeep
Normal file
26
.changie.yaml
Normal file
26
.changie.yaml
Normal file
@@ -0,0 +1,26 @@
|
||||
changesDir: .changes
|
||||
unreleasedDir: unreleased
|
||||
headerPath: header.tpl.md
|
||||
changelogPath: CHANGELOG.md
|
||||
versionExt: md
|
||||
versionFormat: '## {{.Version}} - {{.Time.Format "2006-01-02"}}'
|
||||
kindFormat: '### {{.Kind}}'
|
||||
changeFormat: '* {{.Body}}'
|
||||
kinds:
|
||||
- label: Added
|
||||
auto: minor
|
||||
- label: Changed
|
||||
auto: major
|
||||
- label: Deprecated
|
||||
auto: minor
|
||||
- label: Removed
|
||||
auto: major
|
||||
- label: Fixed
|
||||
auto: patch
|
||||
- label: Security
|
||||
auto: patch
|
||||
newlines:
|
||||
afterChangelogHeader: 1
|
||||
beforeChangelogVersion: 1
|
||||
endOfVersion: 1
|
||||
envPrefix: CHANGIE_
|
70
.gitea/workflows/build-image.yaml
Normal file
70
.gitea/workflows/build-image.yaml
Normal file
@@ -0,0 +1,70 @@
|
||||
name: Build an image to deploy website
|
||||
|
||||
on:
|
||||
# Runs on pushes targeting the default branch
|
||||
push:
|
||||
tags:
|
||||
- v*
|
||||
|
||||
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
|
||||
permissions:
|
||||
contents: read
|
||||
pages: write
|
||||
id-token: write
|
||||
|
||||
# Environment variables available to all jobs and steps in this workflow
|
||||
env:
|
||||
HUGO_ENV: production
|
||||
HUGO_VERSION: "0.121.2"
|
||||
GO_VERSION: "1.21.4"
|
||||
NODE_VERSION: "18"
|
||||
|
||||
jobs:
|
||||
# Build job
|
||||
build:
|
||||
runs-on: cth-ubuntu-latest
|
||||
steps:
|
||||
- name: Check out repository
|
||||
uses: https://github.com/actions/checkout@v4
|
||||
|
||||
- name: Setup node
|
||||
uses: https://github.com/actions/setup-node@v4
|
||||
with:
|
||||
node-version: '${{ NODE_VERSION }}'
|
||||
|
||||
- name: Setup Hugo
|
||||
uses: https://github.com/peaceiris/actions-hugo@v2
|
||||
with:
|
||||
hugo-version: '${{ HUGO_VERSION }}'
|
||||
extended: true
|
||||
|
||||
- name: Setup Go
|
||||
uses: https://github.com/actions/setup-go@v5
|
||||
with:
|
||||
go-version: '1.21.4'
|
||||
|
||||
- name: Setup Project
|
||||
run: npm run project-setup
|
||||
|
||||
- name: Install npm dependencies
|
||||
run: npm install
|
||||
|
||||
- name: Compile website
|
||||
run: npm run build
|
||||
|
||||
- name: Set up Docker Buildx
|
||||
uses: https://github.com/docker/setup-buildx-action@v3
|
||||
|
||||
- name: Login to registry
|
||||
uses: https://github.com/docker/login-action@v3
|
||||
with:
|
||||
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
||||
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
||||
registry: 'h3m6q87t.gra7.container-registry.ovh.net'
|
||||
|
||||
- name: Build and push
|
||||
uses: https://github.com/docker/build-push-action@v5
|
||||
with:
|
||||
context: .
|
||||
push: true
|
||||
tags: 'h3m6q87t.gra7.container-registry.ovh.net/chill_website/web:${{ github.ref_name }}'
|
75
.github/workflows/main.yml
vendored
75
.github/workflows/main.yml
vendored
@@ -1,75 +0,0 @@
|
||||
# Sample workflow for building and deploying a Hugo site to GitHub Pages
|
||||
name: Deploy Hugo site to Pages
|
||||
|
||||
on:
|
||||
# Runs on pushes targeting the default branch
|
||||
push:
|
||||
branches: ["main"]
|
||||
|
||||
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
|
||||
permissions:
|
||||
contents: read
|
||||
pages: write
|
||||
id-token: write
|
||||
|
||||
# Environment variables available to all jobs and steps in this workflow
|
||||
env:
|
||||
HUGO_ENV: production
|
||||
HUGO_VERSION: "0.118.2"
|
||||
GO_VERSION: "1.20.5"
|
||||
NODE_VERSION: "18.15.0"
|
||||
TINA_CLIENT_ID: ${{ vars.TINA_CLIENT_ID }}
|
||||
TINA_TOKEN: ${{ vars.TINA_TOKEN }}
|
||||
|
||||
jobs:
|
||||
# Build job
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- name: Set up Node.js
|
||||
uses: actions/setup-node@v3
|
||||
with:
|
||||
node-version: ${{ env.NODE_VERSION }}
|
||||
|
||||
- name: Install Hugo
|
||||
run: |
|
||||
curl -LO "https://github.com/gohugoio/hugo/releases/download/v${{ env.HUGO_VERSION }}/hugo_extended_${{ env.HUGO_VERSION }}_Linux-64bit.tar.gz"
|
||||
tar -xvf hugo_extended_${{ env.HUGO_VERSION }}_Linux-64bit.tar.gz
|
||||
sudo mv hugo /usr/local/bin/
|
||||
rm hugo_extended_${{ env.HUGO_VERSION }}_Linux-64bit.tar.gz
|
||||
hugo version
|
||||
|
||||
- name: Install Go
|
||||
run: |
|
||||
curl -LO "https://dl.google.com/go/go${{ env.GO_VERSION }}.linux-amd64.tar.gz"
|
||||
sudo tar -C /usr/local -xzf go${{ env.GO_VERSION }}.linux-amd64.tar.gz
|
||||
echo "export PATH=$PATH:/usr/local/go/bin" >> $GITHUB_ENV
|
||||
rm go${{ env.GO_VERSION }}.linux-amd64.tar.gz
|
||||
go version
|
||||
|
||||
- name: Setup Project
|
||||
run: npm run project-setup
|
||||
|
||||
- name: Install npm dependencies
|
||||
run: npm install
|
||||
|
||||
- name: Publish to GitHub Pages
|
||||
run: npm run build
|
||||
|
||||
- name: Upload artifact
|
||||
uses: actions/upload-pages-artifact@v1
|
||||
with:
|
||||
path: ./public
|
||||
|
||||
# Deployment job
|
||||
deploy:
|
||||
environment:
|
||||
name: github-pages
|
||||
url: ${{ steps.deployment.outputs.page_url }}
|
||||
runs-on: ubuntu-latest
|
||||
needs: build
|
||||
steps:
|
||||
- name: Deploy to GitHub Pages
|
||||
id: deployment
|
||||
uses: actions/deploy-pages@v2
|
3
.gitignore
vendored
3
.gitignore
vendored
@@ -14,4 +14,5 @@ resources
|
||||
jsconfig.json
|
||||
hugo_stats.json
|
||||
go.sum
|
||||
yarn.lock
|
||||
yarn.lock
|
||||
.idea/*
|
||||
|
8
.idea/.gitignore
generated
vendored
8
.idea/.gitignore
generated
vendored
@@ -1,8 +0,0 @@
|
||||
# Default ignored files
|
||||
/shelf/
|
||||
/workspace.xml
|
||||
# Editor-based HTTP Client requests
|
||||
/httpRequests/
|
||||
# Datasource local storage ignored files
|
||||
/dataSources/
|
||||
/dataSources.local.xml
|
62
.idea/codeStyles/Project.xml
generated
Normal file
62
.idea/codeStyles/Project.xml
generated
Normal file
@@ -0,0 +1,62 @@
|
||||
<component name="ProjectCodeStyleConfiguration">
|
||||
<code_scheme name="Project" version="173">
|
||||
<HTMLCodeStyleSettings>
|
||||
<option name="HTML_SPACE_INSIDE_EMPTY_TAG" value="true" />
|
||||
</HTMLCodeStyleSettings>
|
||||
<JSCodeStyleSettings version="0">
|
||||
<option name="FORCE_SEMICOLON_STYLE" value="true" />
|
||||
<option name="SPACE_BEFORE_FUNCTION_LEFT_PARENTH" value="false" />
|
||||
<option name="FORCE_QUOTE_STYlE" value="true" />
|
||||
<option name="ENFORCE_TRAILING_COMMA" value="Remove" />
|
||||
<option name="SPACES_WITHIN_OBJECT_LITERAL_BRACES" value="true" />
|
||||
<option name="SPACES_WITHIN_IMPORTS" value="true" />
|
||||
</JSCodeStyleSettings>
|
||||
<TypeScriptCodeStyleSettings version="0">
|
||||
<option name="FORCE_SEMICOLON_STYLE" value="true" />
|
||||
<option name="SPACE_BEFORE_FUNCTION_LEFT_PARENTH" value="false" />
|
||||
<option name="FORCE_QUOTE_STYlE" value="true" />
|
||||
<option name="ENFORCE_TRAILING_COMMA" value="Remove" />
|
||||
<option name="SPACES_WITHIN_OBJECT_LITERAL_BRACES" value="true" />
|
||||
<option name="SPACES_WITHIN_IMPORTS" value="true" />
|
||||
</TypeScriptCodeStyleSettings>
|
||||
<VueCodeStyleSettings>
|
||||
<option name="INTERPOLATION_NEW_LINE_AFTER_START_DELIMITER" value="false" />
|
||||
<option name="INTERPOLATION_NEW_LINE_BEFORE_END_DELIMITER" value="false" />
|
||||
</VueCodeStyleSettings>
|
||||
<codeStyleSettings language="HTML">
|
||||
<option name="SOFT_MARGINS" value="80" />
|
||||
<indentOptions>
|
||||
<option name="INDENT_SIZE" value="2" />
|
||||
<option name="CONTINUATION_INDENT_SIZE" value="2" />
|
||||
<option name="TAB_SIZE" value="2" />
|
||||
</indentOptions>
|
||||
</codeStyleSettings>
|
||||
<codeStyleSettings language="JavaScript">
|
||||
<option name="SOFT_MARGINS" value="80" />
|
||||
<indentOptions>
|
||||
<option name="INDENT_SIZE" value="2" />
|
||||
<option name="CONTINUATION_INDENT_SIZE" value="2" />
|
||||
<option name="TAB_SIZE" value="2" />
|
||||
</indentOptions>
|
||||
</codeStyleSettings>
|
||||
<codeStyleSettings language="TypeScript">
|
||||
<option name="SOFT_MARGINS" value="80" />
|
||||
<indentOptions>
|
||||
<option name="INDENT_SIZE" value="2" />
|
||||
<option name="CONTINUATION_INDENT_SIZE" value="2" />
|
||||
<option name="TAB_SIZE" value="2" />
|
||||
</indentOptions>
|
||||
</codeStyleSettings>
|
||||
<codeStyleSettings language="Vue">
|
||||
<option name="SOFT_MARGINS" value="80" />
|
||||
<indentOptions>
|
||||
<option name="CONTINUATION_INDENT_SIZE" value="2" />
|
||||
</indentOptions>
|
||||
</codeStyleSettings>
|
||||
<codeStyleSettings language="yaml">
|
||||
<indentOptions>
|
||||
<option name="INDENT_SIZE" value="4" />
|
||||
</indentOptions>
|
||||
</codeStyleSettings>
|
||||
</code_scheme>
|
||||
</component>
|
5
.idea/codeStyles/codeStyleConfig.xml
generated
Normal file
5
.idea/codeStyles/codeStyleConfig.xml
generated
Normal file
@@ -0,0 +1,5 @@
|
||||
<component name="ProjectCodeStyleConfiguration">
|
||||
<state>
|
||||
<option name="USE_PER_PROJECT_SETTINGS" value="true" />
|
||||
</state>
|
||||
</component>
|
6
.idea/inspectionProfiles/Project_Default.xml
generated
Normal file
6
.idea/inspectionProfiles/Project_Default.xml
generated
Normal file
@@ -0,0 +1,6 @@
|
||||
<component name="InspectionProjectProfileManager">
|
||||
<profile version="1.0">
|
||||
<option name="myName" value="Project Default" />
|
||||
<inspection_tool class="JSHint" enabled="true" level="ERROR" enabled_by_default="true" />
|
||||
</profile>
|
||||
</component>
|
16
.idea/jsLinters/jshint.xml
generated
Normal file
16
.idea/jsLinters/jshint.xml
generated
Normal file
@@ -0,0 +1,16 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="JSHintConfiguration" version="2.13.6" use-config-file="true" use-custom-config-file="true" custom-config-file-path="$PROJECT_DIR$/.jshintrc">
|
||||
<option bitwise="true" />
|
||||
<option browser="true" />
|
||||
<option curly="true" />
|
||||
<option eqeqeq="true" />
|
||||
<option forin="true" />
|
||||
<option maxerr="50" />
|
||||
<option noarg="true" />
|
||||
<option noempty="true" />
|
||||
<option nonew="true" />
|
||||
<option strict="true" />
|
||||
<option undef="true" />
|
||||
</component>
|
||||
</project>
|
2
.idea/modules.xml
generated
2
.idea/modules.xml
generated
@@ -2,7 +2,7 @@
|
||||
<project version="4">
|
||||
<component name="ProjectModuleManager">
|
||||
<modules>
|
||||
<module fileurl="file://$PROJECT_DIR$/.idea/hugoplate.iml" filepath="$PROJECT_DIR$/.idea/hugoplate.iml" />
|
||||
<module fileurl="file://$PROJECT_DIR$/.idea/chill_hugoplate.iml" filepath="$PROJECT_DIR$/.idea/chill_hugoplate.iml" />
|
||||
</modules>
|
||||
</component>
|
||||
</project>
|
99
.idea/workspace.xml
generated
Normal file
99
.idea/workspace.xml
generated
Normal file
@@ -0,0 +1,99 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="AutoImportSettings">
|
||||
<option name="autoReloadType" value="SELECTIVE" />
|
||||
</component>
|
||||
<component name="ChangeListManager">
|
||||
<list default="true" id="f045a27b-2f7c-4e29-b0d1-b2f3a8438404" name="Changes" comment="Setup docker image and CI" />
|
||||
<list id="e6042637-2834-4c28-8317-b4fabf609992" name="Changes by julielenaerts" comment="" />
|
||||
<option name="SHOW_DIALOG" value="false" />
|
||||
<option name="HIGHLIGHT_CONFLICTS" value="true" />
|
||||
<option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
|
||||
<option name="LAST_RESOLUTION" value="IGNORE" />
|
||||
</component>
|
||||
<component name="ComposerSettings">
|
||||
<execution />
|
||||
</component>
|
||||
<component name="Git.Settings">
|
||||
<option name="RECENT_BRANCH_BY_REPOSITORY">
|
||||
<map>
|
||||
<entry key="$PROJECT_DIR$" value="main" />
|
||||
</map>
|
||||
</option>
|
||||
<option name="RECENT_GIT_ROOT_PATH" value="$PROJECT_DIR$" />
|
||||
</component>
|
||||
<component name="KubernetesApiProvider"><![CDATA[{
|
||||
"isMigrated": true
|
||||
}]]></component>
|
||||
<component name="MarkdownSettingsMigration">
|
||||
<option name="stateVersion" value="1" />
|
||||
</component>
|
||||
<component name="PhpWorkspaceProjectConfiguration" interpreter_name="/bin/php" />
|
||||
<component name="ProjectColorInfo"><![CDATA[{
|
||||
"associatedIndex": 0
|
||||
}]]></component>
|
||||
<component name="ProjectId" id="2bOXEJ77FlOs2KdDsagHQb8lOI4" />
|
||||
<component name="ProjectViewState">
|
||||
<option name="hideEmptyMiddlePackages" value="true" />
|
||||
<option name="showLibraryContents" value="true" />
|
||||
<option name="showMembers" value="true" />
|
||||
<option name="sortByType" value="true" />
|
||||
<option name="sortKey" value="BY_TYPE" />
|
||||
</component>
|
||||
<component name="PropertiesComponent"><![CDATA[{
|
||||
"keyToString": {
|
||||
"RunOnceActivity.OpenProjectViewOnStart": "true",
|
||||
"RunOnceActivity.ShowReadmeOnStart": "true",
|
||||
"git-widget-placeholder": "gitea-ci",
|
||||
"node.js.detected.package.eslint": "true",
|
||||
"node.js.detected.package.tslint": "true",
|
||||
"node.js.selected.package.eslint": "(autodetect)",
|
||||
"node.js.selected.package.tslint": "(autodetect)",
|
||||
"nodejs_package_manager_path": "npm",
|
||||
"vue.rearranger.settings.migration": "true"
|
||||
}
|
||||
}]]></component>
|
||||
<component name="SharedIndexes">
|
||||
<attachedChunks>
|
||||
<set>
|
||||
<option value="bundled-php-predefined-ba97393d7c68-b4dcf6bb9de9-com.jetbrains.php.sharedIndexes-PS-233.13135.108" />
|
||||
</set>
|
||||
</attachedChunks>
|
||||
</component>
|
||||
<component name="SpellCheckerSettings" RuntimeDictionaries="0" Folders="0" CustomDictionaries="0" DefaultDictionary="application-level" UseSingleDictionary="true" transferred="true" />
|
||||
<component name="TaskManager">
|
||||
<task active="true" id="Default" summary="Default task">
|
||||
<changelist id="f045a27b-2f7c-4e29-b0d1-b2f3a8438404" name="Changes" comment="" />
|
||||
<created>1706086985231</created>
|
||||
<option name="number" value="Default" />
|
||||
<option name="presentableId" value="Default" />
|
||||
<updated>1706086985231</updated>
|
||||
<workItem from="1706086986311" duration="2804000" />
|
||||
</task>
|
||||
<task id="LOCAL-00001" summary="Setup docker image and CI">
|
||||
<option name="closed" value="true" />
|
||||
<created>1706089591660</created>
|
||||
<option name="number" value="00001" />
|
||||
<option name="presentableId" value="LOCAL-00001" />
|
||||
<option name="project" value="LOCAL" />
|
||||
<updated>1706089591660</updated>
|
||||
</task>
|
||||
<task id="LOCAL-00002" summary="Setup docker image and CI">
|
||||
<option name="closed" value="true" />
|
||||
<created>1706089758423</created>
|
||||
<option name="number" value="00002" />
|
||||
<option name="presentableId" value="LOCAL-00002" />
|
||||
<option name="project" value="LOCAL" />
|
||||
<updated>1706089758423</updated>
|
||||
</task>
|
||||
<option name="localTasksCounter" value="3" />
|
||||
<servers />
|
||||
</component>
|
||||
<component name="TypeScriptGeneratedFilesManager">
|
||||
<option name="version" value="3" />
|
||||
</component>
|
||||
<component name="VcsManagerConfiguration">
|
||||
<MESSAGE value="Setup docker image and CI" />
|
||||
<option name="LAST_COMMIT_MESSAGE" value="Setup docker image and CI" />
|
||||
</component>
|
||||
</project>
|
39
CHANGELOG.md
Normal file
39
CHANGELOG.md
Normal file
@@ -0,0 +1,39 @@
|
||||
# Changelog
|
||||
All notable changes to this project will be documented in this file.
|
||||
|
||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
||||
adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html),
|
||||
and is generated by [Changie](https://github.com/miniscruff/changie).
|
||||
|
||||
|
||||
## 3.1.0 - 2024-04-17
|
||||
### Added
|
||||
* Link and qr code added to join matrix chat for developers
|
||||
|
||||
## 3.0.0 - 2024-04-17
|
||||
### Changed
|
||||
* Change made to website title tag to improve google indexation
|
||||
|
||||
## 2.4.0 - 2024-02-07
|
||||
### Added
|
||||
* Brochure added for downloading
|
||||
|
||||
## 2.3.0 - 2024-02-07
|
||||
### Fixed
|
||||
* Font fixed to work across browsers
|
||||
|
||||
## 2.2.0 - 2024-02-01
|
||||
### Fixed
|
||||
* Styling of workflow header in english page
|
||||
|
||||
## 2.1.0 - 2024-01-29
|
||||
### Changed
|
||||
* Styling language selector improved for visibility and dutch content updated
|
||||
|
||||
## 2.0.0 - 2024-01-24
|
||||
### Changed
|
||||
* Button styling updated to match the other buttons
|
||||
|
||||
## 1.0.0 - 2024-01-24
|
||||
### Added
|
||||
* Started brand new website
|
@@ -1,5 +1,3 @@
|
||||
FROM klakegg/hugo:alpine-onbuild AS hugo
|
||||
|
||||
FROM caddy:2-alpine
|
||||
|
||||
ADD src/ /usr/share/caddy/
|
||||
ADD public/ /usr/share/caddy/
|
||||
|
BIN
assets/fonts/Lato/Lato-Black.ttf
Normal file
BIN
assets/fonts/Lato/Lato-Black.ttf
Normal file
Binary file not shown.
BIN
assets/fonts/Lato/Lato-BlackItalic.ttf
Normal file
BIN
assets/fonts/Lato/Lato-BlackItalic.ttf
Normal file
Binary file not shown.
BIN
assets/fonts/Lato/Lato-Bold.ttf
Normal file
BIN
assets/fonts/Lato/Lato-Bold.ttf
Normal file
Binary file not shown.
BIN
assets/fonts/Lato/Lato-BoldItalic.ttf
Normal file
BIN
assets/fonts/Lato/Lato-BoldItalic.ttf
Normal file
Binary file not shown.
BIN
assets/fonts/Lato/Lato-Italic.ttf
Normal file
BIN
assets/fonts/Lato/Lato-Italic.ttf
Normal file
Binary file not shown.
BIN
assets/fonts/Lato/Lato-Light.ttf
Normal file
BIN
assets/fonts/Lato/Lato-Light.ttf
Normal file
Binary file not shown.
BIN
assets/fonts/Lato/Lato-LightItalic.ttf
Normal file
BIN
assets/fonts/Lato/Lato-LightItalic.ttf
Normal file
Binary file not shown.
BIN
assets/fonts/Lato/Lato-Regular.ttf
Normal file
BIN
assets/fonts/Lato/Lato-Regular.ttf
Normal file
Binary file not shown.
BIN
assets/fonts/Lato/Lato-Thin.ttf
Normal file
BIN
assets/fonts/Lato/Lato-Thin.ttf
Normal file
Binary file not shown.
BIN
assets/fonts/Lato/Lato-ThinItalic.ttf
Normal file
BIN
assets/fonts/Lato/Lato-ThinItalic.ttf
Normal file
Binary file not shown.
93
assets/fonts/Lato/OFL.txt
Normal file
93
assets/fonts/Lato/OFL.txt
Normal file
@@ -0,0 +1,93 @@
|
||||
Copyright (c) 2010-2014 by tyPoland Lukasz Dziedzic (team@latofonts.com) with Reserved Font Name "Lato"
|
||||
|
||||
This Font Software is licensed under the SIL Open Font License, Version 1.1.
|
||||
This license is copied below, and is also available with a FAQ at:
|
||||
https://openfontlicense.org
|
||||
|
||||
|
||||
-----------------------------------------------------------
|
||||
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
|
||||
-----------------------------------------------------------
|
||||
|
||||
PREAMBLE
|
||||
The goals of the Open Font License (OFL) are to stimulate worldwide
|
||||
development of collaborative font projects, to support the font creation
|
||||
efforts of academic and linguistic communities, and to provide a free and
|
||||
open framework in which fonts may be shared and improved in partnership
|
||||
with others.
|
||||
|
||||
The OFL allows the licensed fonts to be used, studied, modified and
|
||||
redistributed freely as long as they are not sold by themselves. The
|
||||
fonts, including any derivative works, can be bundled, embedded,
|
||||
redistributed and/or sold with any software provided that any reserved
|
||||
names are not used by derivative works. The fonts and derivatives,
|
||||
however, cannot be released under any other type of license. The
|
||||
requirement for fonts to remain under this license does not apply
|
||||
to any document created using the fonts or their derivatives.
|
||||
|
||||
DEFINITIONS
|
||||
"Font Software" refers to the set of files released by the Copyright
|
||||
Holder(s) under this license and clearly marked as such. This may
|
||||
include source files, build scripts and documentation.
|
||||
|
||||
"Reserved Font Name" refers to any names specified as such after the
|
||||
copyright statement(s).
|
||||
|
||||
"Original Version" refers to the collection of Font Software components as
|
||||
distributed by the Copyright Holder(s).
|
||||
|
||||
"Modified Version" refers to any derivative made by adding to, deleting,
|
||||
or substituting -- in part or in whole -- any of the components of the
|
||||
Original Version, by changing formats or by porting the Font Software to a
|
||||
new environment.
|
||||
|
||||
"Author" refers to any designer, engineer, programmer, technical
|
||||
writer or other person who contributed to the Font Software.
|
||||
|
||||
PERMISSION & CONDITIONS
|
||||
Permission is hereby granted, free of charge, to any person obtaining
|
||||
a copy of the Font Software, to use, study, copy, merge, embed, modify,
|
||||
redistribute, and sell modified and unmodified copies of the Font
|
||||
Software, subject to the following conditions:
|
||||
|
||||
1) Neither the Font Software nor any of its individual components,
|
||||
in Original or Modified Versions, may be sold by itself.
|
||||
|
||||
2) Original or Modified Versions of the Font Software may be bundled,
|
||||
redistributed and/or sold with any software, provided that each copy
|
||||
contains the above copyright notice and this license. These can be
|
||||
included either as stand-alone text files, human-readable headers or
|
||||
in the appropriate machine-readable metadata fields within text or
|
||||
binary files as long as those fields can be easily viewed by the user.
|
||||
|
||||
3) No Modified Version of the Font Software may use the Reserved Font
|
||||
Name(s) unless explicit written permission is granted by the corresponding
|
||||
Copyright Holder. This restriction only applies to the primary font name as
|
||||
presented to the users.
|
||||
|
||||
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
|
||||
Software shall not be used to promote, endorse or advertise any
|
||||
Modified Version, except to acknowledge the contribution(s) of the
|
||||
Copyright Holder(s) and the Author(s) or with their explicit written
|
||||
permission.
|
||||
|
||||
5) The Font Software, modified or unmodified, in part or in whole,
|
||||
must be distributed entirely under this license, and must not be
|
||||
distributed under any other license. The requirement for fonts to
|
||||
remain under this license does not apply to any document created
|
||||
using the Font Software.
|
||||
|
||||
TERMINATION
|
||||
This license becomes null and void if any of the above conditions are
|
||||
not met.
|
||||
|
||||
DISCLAIMER
|
||||
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
|
||||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
|
||||
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
|
||||
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
||||
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
|
||||
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
|
||||
OTHER DEALINGS IN THE FONT SOFTWARE.
|
@@ -18,6 +18,14 @@ $text-green: #56c4aa;
|
||||
$red: #f0384d;
|
||||
$yellow: #fcc958;
|
||||
|
||||
@font-face {
|
||||
font-family: 'Lato', Arial;
|
||||
src: url('assets/fonts/Lato/Lato-Regular.ttf') format('truetype');
|
||||
font-display: optional;
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
// Pattern
|
||||
@mixin add-bg-pattern($id) {
|
||||
background-repeat: repeat;
|
||||
@@ -66,11 +74,9 @@ $yellow: #fcc958;
|
||||
}
|
||||
|
||||
body{
|
||||
font-family: 'Lato', serif;
|
||||
font-family: 'Lato', sans-serif;
|
||||
.highlight {
|
||||
padding: .5rem;
|
||||
font-family: 'Trocchi', serif;
|
||||
font-size: 2rem;
|
||||
padding: .25rem;
|
||||
}
|
||||
.highlight-1 {
|
||||
background-color: $chill-green;
|
||||
@@ -92,6 +98,21 @@ header.header {
|
||||
padding-top: 0rem;
|
||||
}
|
||||
|
||||
.navbar {
|
||||
.btn-primary {
|
||||
background-color: $orange;
|
||||
border: 1px solid $orange;
|
||||
color: white;
|
||||
&:hover {
|
||||
background-color: $chill-orange;
|
||||
border: 1px solid $chill-orange;
|
||||
}
|
||||
}
|
||||
.lang-select {
|
||||
color: white;
|
||||
}
|
||||
}
|
||||
|
||||
main > section {
|
||||
&.hero {
|
||||
height: 100vh;
|
||||
@@ -104,6 +125,10 @@ main > section {
|
||||
background-color: $orange;
|
||||
color: white;
|
||||
border-color: $orange;
|
||||
&:hover {
|
||||
background-color: $chill-orange;
|
||||
border: 1px solid $chill-orange;
|
||||
}
|
||||
}
|
||||
}
|
||||
&.section-1 {
|
||||
@@ -304,6 +329,16 @@ section {
|
||||
border-radius: 2em;
|
||||
}
|
||||
|
||||
.download {
|
||||
margin-right: auto;
|
||||
margin-left: auto;
|
||||
display: block;
|
||||
a {
|
||||
text-decoration: none;
|
||||
padding: .5rem;
|
||||
}
|
||||
}
|
||||
|
||||
// Dark but only in sections
|
||||
section.dark {
|
||||
p {
|
||||
@@ -391,6 +426,10 @@ figure.image {
|
||||
figcaption {}
|
||||
}
|
||||
|
||||
.text-brochure {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
// RESPONSIVENESS
|
||||
|
||||
@media screen and (max-width: 1279px) {
|
||||
|
@@ -20,10 +20,10 @@ features:
|
||||
title:
|
||||
content:
|
||||
bulletpoints:
|
||||
- Keep track of your day-to-day interactions
|
||||
- Search and share information about the people in your care
|
||||
- Communicate and interact with members of your team
|
||||
- Have access to statistics on your work at all times
|
||||
- Keep track of your day-to-day professional activities
|
||||
- Access to your files at all times
|
||||
- Communicate and interact easily with members of your team
|
||||
- Security and respect for the privacy of data
|
||||
button:
|
||||
enable: false
|
||||
label: Button label
|
||||
|
@@ -6,7 +6,7 @@ description: Workflows allow you to phase more complex tasks without losing sigh
|
||||
comments: false
|
||||
---
|
||||
|
||||
## A streamlined workflow
|
||||
<h5 class="content-subtitle bord-1">A streamlined workflow</h5>
|
||||
|
||||
**For large teams**, Chill enables decisions to be tracked and validated within a hierarchy.
|
||||
|
||||
|
@@ -1,8 +1,12 @@
|
||||
---
|
||||
title: en Brochure
|
||||
subtitle:
|
||||
title: Brochure
|
||||
description: Download, read, print, and share
|
||||
image:
|
||||
comments: false
|
||||
---
|
||||
|
||||
<p class="text-brochure">If you'd like to find out more about Chill, download the brochure here. Maybe even print and share it? ;-)</p>
|
||||
|
||||
<button class="btn-primary download">
|
||||
<a class="btn-primary" href="/Brochure_Chill_V9.zip">Download the brochure</a>
|
||||
</button>
|
||||
|
@@ -22,4 +22,4 @@ The manual is also accessible via a link in the application footer.
|
||||
|
||||
<h5 class="content-subtitle bord-2">User trainings</h5>
|
||||
|
||||
Ask your Chill [provider](/get-chill/providers) to organize a Chill training day.
|
||||
Ask your Chill [provider](/en/get-chill/providers) to organize a Chill training day.
|
||||
|
@@ -23,7 +23,7 @@ features:
|
||||
- Conservez les traces de vos interactions au quotidien
|
||||
- Recherchez et partagez les infos à propos des personnes que vous accompagnez
|
||||
- Communiquez pour interagir en équipe
|
||||
- Disposez à tout moment des statistiques
|
||||
- Sécurité et respect des données privées
|
||||
button:
|
||||
enable: false
|
||||
label: Button label
|
||||
|
@@ -36,7 +36,13 @@ La documentation technique de Chill se trouve à l'adresse suivante: http://docs
|
||||
|
||||
Il existe un salon sur la messagerie Matrix, pour échanger avec les développeurs de Chill.
|
||||
|
||||
`#chill-social-admin:matrix.org`
|
||||
Pour le rejoindre cliquez sur le lien ci-dessous,
|
||||
|
||||
[#chill-social-admin:matrix.org](https://matrix.to/#/#chill-social-admin:matrix.org)
|
||||
|
||||
ou scannez le code qr
|
||||
|
||||
<img src="/images/chill-admin.png"/>
|
||||
|
||||
|
||||
<h5 class="content-subtitle bord-1">Contribuer, devenir prestataire</h5>
|
||||
|
@@ -1,9 +1,12 @@
|
||||
---
|
||||
title: Brochure
|
||||
subtitle:
|
||||
description: À télécharger, imprimer et partager
|
||||
image:
|
||||
comments: false
|
||||
---
|
||||
|
||||
<p class="text-brochure">Si vous souhaitez en savoir plus sur Chill, téléchargez la brochure ici. Vous pouvez même l'imprimer et la partager ;-)</p>
|
||||
|
||||
Télécharger la brochure (PDF)
|
||||
<button class="btn-primary download">
|
||||
<a class="btn-primary" href="/Brochure_Chill_V9.zip">Télécharger la brochure</a>
|
||||
</button>
|
||||
|
@@ -20,10 +20,10 @@ features:
|
||||
title:
|
||||
content:
|
||||
bulletpoints:
|
||||
- Houd je dagelijkse begeleidingsacties bij
|
||||
- Informatie zoeken en delen over de mensen die je begeleid
|
||||
- Je begeleidingsdossiers altijd bij de hand
|
||||
- Eenvoudige registratie van al je begleidingsactiviteiten
|
||||
- Communiceer en interageer met je teamgenoten
|
||||
- Op elk moment toegang tot statistieken
|
||||
- Veiligheid van gegevens en respect voor privacy
|
||||
button:
|
||||
enable: false
|
||||
label: Button label
|
||||
|
@@ -1,6 +1,6 @@
|
||||
---
|
||||
title: Suivi des accompagnements
|
||||
subtitle: Parcours d'accompagnement
|
||||
title: Hulpverleningstrajecten
|
||||
subtitle: Hulpverleningstrajecten
|
||||
image:
|
||||
description: Maak één of meerdere hulpverleningsplannen voor een initiële probleemdiagnose en om ondernomen acties en geboekte vooruitgang op te volgen.
|
||||
comments: false
|
||||
@@ -8,31 +8,31 @@ comments: false
|
||||
|
||||
<h5 class="content-subtitle bord-1"> De verschillende trajecten van gebruikers registreren</h5>
|
||||
|
||||
Gebruikers worden gevolgd als onderdeel van een **ondersteuningspad**.
|
||||
Gebruikers worden gevolgd aan de hand van een **hulpverleningstraject**.
|
||||
|
||||
Elke gebruiker kan meerdere trajecten hebben, afhankelijk van de verschillende verwijzers en/of de organisatie van de dienst.
|
||||
Elke gebruiker kan meerdere trajecten hebben, afhankelijk van de aanwezige problematieken de manier waaorp jouw dienst deze wenst op te volgen, binnen één traject of meerdere.
|
||||
|
||||
Op dezelfde manier kan een ondersteuningstraject meerdere gebruikers betreffen: het kan gaan om één gebruiker, een hele familie of een groep mensen.
|
||||
Een hulpverleningsstraject kan daarnaast ook meerdere gebruikers betreffen: het kan gaan om één gebruiker, een hele familie of een groep mensen.
|
||||
|
||||
<h5 class="content-subtitle bord-2">Karakterisering van trajecten</h5>
|
||||
|
||||
De trajecten worden geassocieerd met **sociale kwesties**: ze geven aan "wat aan bod komt" in het traject.
|
||||
De trajecten worden geassocieerd met één of meerdere **problematieken**: deze geven aan wat de hulpverleningsvraag is van een persoon en bijgevolg "waar aan gewerkt wordt" binnen het traject.
|
||||
|
||||
Het traject kan zich ook in de ruimte bevinden: in de buurt van het huis van een gebruiker of een willekeurig adres, en/of een locatie in de buurt van een dienst.
|
||||
Naast de problematieken kunnen tal van andere gegevens binnen het traject worden geregistreerd, bijvoorbeeld waar de hulpverlening plaatsvindt (bij de persoon thuis, binnen de instelling,..)
|
||||
|
||||
Het is ook mogelijk om een aanvrager, de oorsprong, de openingsdatum van het pad, enz. in te voeren.
|
||||
wie de aanvrager is, wie de individuele begleider is, wanneer het traject van start is gegaan, welke andere personen en/of externe partners erbij betrokken zijn enz...
|
||||
|
||||
<h5 class="content-subtitle bord-3">Uitwisselingen registreren</h5>
|
||||
<h5 class="content-subtitle bord-3">Hulpverleningsactiviteiten registreren</h5>
|
||||
|
||||
Elke uitwisseling met de gebruiker kan worden aangegeven in het pad, zodat het mogelijk is om de geschiedenis en de inhoud van deze verschillende momenten te kennen.
|
||||
Binnen elk traject kunnen al de uitwisselingen met de persoon/personen worden geregistreerd. Zo is er altijd een geschiedenis beschikbaar van wat binnen het traject werd ondernomen.
|
||||
|
||||
Gebruikers kunnen verschillende soorten uitwisselingen registreren: afspraken thuis, gesprekken in de salon, een eenvoudig gesprek of vergaderingen. Deze soorten uitwisselingen worden geconfigureerd door de beheerders, die ook de vereiste formuliervelden voor elk type kunnen activeren of deactiveren.
|
||||
Gebruikers kunnen verschillende soorten uitwisselingen registreren: afspraken thuis, gesprekken op bureau, vergaderingen omtrent het traject, enz... Deze soorten uitwisselingen kunnen volledig geconfigureerd worden door de beheerders.
|
||||
|
||||
<h5 class="content-subtitle bord-4">Lijst van uitgevoerde acties</h5>
|
||||
|
||||
De verschillende uitwisselingen maken het mogelijk om ondersteuningsacties op te bouwen: werken aan een cv, een bijstandsaanvraag indienen, een follow-up opzetten, enz.
|
||||
Uitwisseling binnen het traject dienen daarnaast natuurlijk om bepaalde hulpverleningsacties uit te stippelen: werken aan een cv, een bijstandsaanvraag indienen, follow-up door psycholoog opzetten, enz.
|
||||
|
||||
Voor elke actie is het mogelijk om documenten te koppelen of te genereren: resultaten van CV-werk, sociale mandaatdocumenten, enz. Het is zelfs mogelijk om vooraf ingevulde hulpaanvraagformulieren te genereren!
|
||||
Aan elke actie kunnen documenten worden gekoppeld waarvan vaak gebruikte documenten ook automatisch kunnen worden gegenereerd: aanvraag OCMW, inschrijving school, enz.
|
||||
|
||||
De doelstellingen en resultaten van elke actie kunnen ook worden ingevoerd.
|
||||
Vervolgens kunnen ook doelstellingen en de bereikte resultaten worden geregistreerd.
|
||||
|
||||
|
@@ -12,5 +12,4 @@ Hiervoor maakt de applicatie gebruik van sjablonen die specifiek voor jouw organ
|
||||
Sjablonen kunnen gaan van een eenvoudig aanwezigheidscertificaat tot complexe aanvraagformulieren en de informatie die vooraf wordt ingevuld kan gaan van
|
||||
de naam van een persoon tot complexere gegevens over het huishoudbudget.
|
||||
|
||||
De sjablonen moeten eenmalig geconfigureerd worden, maar een van de serviceproviders van Chill kan uw organisatie hierbij helpen.
|
||||
organisatie hierbij te helpen.
|
||||
De sjablonen moeten eenmalig geconfigureerd worden, maar een van de [serviceproviders](/nl/get-chill/providers) van Chill kan uw organisatie hierbij zeker helpen.
|
||||
|
@@ -11,7 +11,7 @@ Cijfers zijn zeker niet de core business van de sociaal werker, maar ze zijn vaa
|
||||
Chill maakt het samenstellen van deze rapportage een stuk lichter.
|
||||
|
||||
De toepassing biedt de mogelijkheid om statistieken te exporteren voor al haar entiteiten, of het nu gaat om persoonsdossiers, de hulpverleningsactiviteiten, huishouddossiers,
|
||||
afspraken, sociale acties,...
|
||||
afspraken, hulpverleningsacties,...
|
||||
Een brede waaier aan parameters laat je toe om gegevens te filteren of te groeperen zodat ze meteen bruikbaar zijn voor je rapporten.
|
||||
|
||||
Een extra troef van deze module is de export van lijsten van personen of hulpverleningstrajecten,
|
||||
|
@@ -8,40 +8,40 @@ comments: false
|
||||
|
||||
<h5 class="content-subtitle bord-1">Basisinformatie verzamelen</h5>
|
||||
|
||||
Elke gebruiker heeft **zijn of haar eigen bestand**. Het bevat "basis"-informatie: voor- en achternaam, geboortedatum, contactgegevens, enz.
|
||||
Elke gebruiker heeft **zijn of haar eigen dossier**. Dit dossier bevat telkens "basis"-informatie: voor- en achternaam, geboortedatum, contactgegevens, enz.
|
||||
|
||||
Het is mogelijk om meerdere **telefoonnummers** in te voeren, maar ook om vrije contactgegevens in te voeren.
|
||||
die vaak bij een eerste intake worden geregistreerd.
|
||||
|
||||
<h5 class="content-subtitle bord-2">Koppel de gebruiker aan een huishouden</h5>
|
||||
|
||||
Met Chill kun je elke gebruiker aan een huishouden koppelen.
|
||||
Met Chill kan je elke gebruiker aan een huishouden koppelen. Dit betreft niet noodzakelijk een gezin, maar ook andere samenstellingen.
|
||||
|
||||
Er wordt een **geschiedenis** van het lidmaatschap van een huishouden bijgehouden, zodat het mogelijk is om voormalige leden van het huishouden terug te vinden.
|
||||
Relaties tussen bewoners kunnen grafisch worden aangegeven. Daarnaast kunnen ook huishoudensbudgetten worden bijgehouden, een verhuisgeschiedenis,
|
||||
|
||||
Heeft een huishouden kinderen met wisselende voogdij? Af en toe leden? Deze informatie kan ook worden ingevoerd.
|
||||
of het huishouden kinderen bevat met of zonder wisselende voogdij? Zodoende kan de exacte samenstelling en evolutie binnen een huishouden worden bijgehouden.
|
||||
|
||||
<h5 class="content-subtitle bord-3">Voer het budget van de gebruiker in</h5>
|
||||
<h5 class="content-subtitle bord-3">Persoonlijke budgetbegeleiding</h5>
|
||||
|
||||
In Chill kun je de budgetgegevens van de gebruiker en het huishouden invoeren: maandelijkse inkomsten en uitgaven.
|
||||
In Chill kunnen budgetgegevens ook op het niveau van het individu worden geregistreerd voor een eenvoudige budgetbegleiding.
|
||||
|
||||
De "soorten uitgaven" en "soorten inkomsten" kunnen **geconfigureerd worden door een beheerder**: salarisinkomen, huur, elektriciteit, enz.
|
||||
|
||||
Elke regel in dit budget is gehistoriseerd, zodat oude gegevens bewaard kunnen blijven.
|
||||
De soorten "uitgaven" en "inkomsten" kunnen **geconfigureerd worden door een beheerder**: salarisinkomen, huur, elektriciteit, enz.
|
||||
|
||||
<h5 class="content-subtitle bord-4">Mensen of derden registreren als "hulpbronnen</h5>
|
||||
|
||||
Met Chill kun je mensen of derden registreren als "resources": dokters, buren, vertalers, naaste familieleden, enz.
|
||||
Om het netwerk van een persoon in kaart te brengen kunnen ook steunfiguren en externe professionele partners worden geregistreerd.
|
||||
|
||||
Deze "resources" kunnen worden beschreven als vrije tekst of komen uit een database van derden die gezamenlijk wordt onderhouden. Het is ook mogelijk om andere gebruikers als "bronnen" op te nemen.
|
||||
Voor externe partners bestaat hiervoor ook een handig 'addressenboekje' die alle teamleden onmiddelijk toegang biedt tot een lijst van alle professionele partners van de organisatie, denk hierbij aan dokters, scholen, psychologen, OCMW medewerkers,...
|
||||
|
||||
<h5 class="content-subtitle bord-1">Documenten uploaden en genereren</h5>
|
||||
|
||||
Voor elke record kun je **verschillende documenten** uploaden: gescande identiteitsdocumenten, adresbewijzen, inkomende post, etc. Je kunt ook documenten van elke record genereren.
|
||||
Binnen elk dossier kun je **verschillende documenten** uploaden: gescande identiteitsdocumenten, inschrijvingsbewijzen, inkomende post, etc. Bepaalde documenten of formulieren die vaak worden gebruikt kan zelfs een automatische generatie worden geconfigureerd.
|
||||
|
||||
Het is ook mogelijk om documenten te genereren vanuit elk record. Dit maakt het mogelijk om **standaardbrieven** te genereren van gegevens die al in de software zijn opgeslagen.
|
||||
Deze worden dan volledig aangepast met de gegevens van de persoon in kwestie en zo hoef je dus nooit meer die OCMW aanvraag helemaal van nul in te vullen.
|
||||
|
||||
CHILL doet dit met plezier voor je en biedt je daarna de mogelijkheid om nog de nodige details aan te passen.
|
||||
|
||||
<h5 class="content-subtitle bord-2">Taken invoeren</h5>
|
||||
|
||||
Maatschappelijk werkers kunnen **taken die moeten worden uitgevoerd** vastleggen in het gebruikersdossier: contact opnemen met een advocaat, de persoon terugbellen de dag na de volgende operatie, enz.
|
||||
Teamleden kunnen voor elk dossier ook **taken** vastleggen. Een taak kan meteen aan de juiste collega worden toegekend en het aangeven van een 'einddatum'
|
||||
|
||||
Deze taken kunnen een vervaldatum hebben. Ze worden dan opgeroepen op de startpagina van de gebruiker.
|
||||
zorgt ervoor dat deze automatisch verwittigd zal worden bij het naderen van de vervaldatum.
|
||||
|
@@ -7,7 +7,7 @@ comments: false
|
||||
|
||||
<h5 class="content-subtitle bord-1">Functies in ontwikkeling en toekomstige functies</h5>
|
||||
|
||||
Het ontwikkelingsteam heeft de verschillende functies gepubliceerd die momenteel in ontwikkeling zijn. De lijst is [hier](https://gitlab.com/Chill-Projet/chill-bundles/-/boards/7086313?label_name[]=kind%3A%3Afeature) beschikbaar.
|
||||
Het ontwikkelingsteam heeft de verschillende functies gepubliceerd die momenteel in ontwikkeling zijn. Die lijst is [hier](https://gitlab.com/Chill-Projet/chill-bundles/-/boards/7086313?label_name[]=kind%3A%3Afeature) beschikbaar.
|
||||
|
||||
Sommige functies bevinden zich in de 'idee'-fase, zonder details of financiering (zie de kolom 'idee' in de gegeven link).
|
||||
|
||||
@@ -20,9 +20,11 @@ Zodra ze klaar zijn, vindt u deze functies in de aantekeningen bij [elke nieuwe
|
||||
|
||||
<h5 class="content-subtitle bord-2">Nieuwe functies toevoegen of financieren?</h5>
|
||||
|
||||
Chill is gefinancierd door eerdere ontwikkelingen in opdracht te geven: andere instellingen hebben ontwikkelaars betaald om functies toe te voegen. Je kunt ze vandaag al gebruiken!
|
||||
Chill is tot stand gekomen door ontwikkelingen die in opdracht van verschillende instellingen werden gedaan.
|
||||
|
||||
Champs-Libres, dat ook de ontwikkeling van de software ondersteunt, gebruikt een deel van zijn hostingomzet voor onderhoud en ontwikkeling.
|
||||
Zo ontstond een solidariteit tussen de verschillende organisaties die CHILL en mee genieten van de functionaliteiten die door elk van hen werden gefinancierd.
|
||||
|
||||
Champs-Libres, momenteel de voornaamste provider, gebruikt daarnaast ook een deel van zijn hostingomzet voor onderhoud en ontwikkeling.
|
||||
|
||||
Om bij te dragen aan de duurzaamheid en ontwikkeling van de software kun je
|
||||
|
||||
@@ -30,8 +32,8 @@ Om bij te dragen aan de duurzaamheid en ontwikkeling van de software kun je
|
||||
- een functie financieren die aan uw behoeften voldoet
|
||||
- of een idee voor een nieuwe functie financieren waar je nog op wacht van een sponsor.
|
||||
|
||||
Is een functie te duur voor je? Aarzel niet om contact met ons op te nemen: uw behoeften komen waarschijnlijk overeen met die van andere instellingen. Het is mogelijk om grootschalige ontwikkelingen te delen met deze andere diensten: kleine stroompjes maken grote rivieren!
|
||||
|
||||
Is een functie te duur voor je? Aarzel niet om contact met ons op te nemen: uw behoeften komen waarschijnlijk overeen met die van andere instellingen.
|
||||
Het is mogelijk om grootschalige ontwikkelingen te delen met deze andere diensten: kleine stroompjes maken grote rivieren!
|
||||
|
||||
<h5 class="content-subtitle bord-3">Nieuwste functies ontwikkeld</h5>
|
||||
|
||||
|
@@ -8,8 +8,6 @@ comments: false
|
||||
|
||||
**Voor grote teams** maakt Chill het mogelijk om beslissingen op te volgen en te valideren binnen een hiërarchie.
|
||||
|
||||
Het is mogelijk om paden voor het volgen van beslissingen te configureren: laat een beslissing valideren door een lijnmanager, verkrijg goedkeuring van een bevoegde afdeling, zorg ervoor dat het document wordt verzonden door de bevoegde afdelingen, etc.
|
||||
Het is mogelijk om paden voor het volgen van beslissingen te configureren: laat een beslissing valideren door een hoofdbegeleider, verkrijg goedkeuring van de pedagoog, zorg ervoor dat het document wordt verzonden door de bevoegde afdelingen, etc.
|
||||
|
||||
Het pad kan worden beperkt om zich aan te passen aan bestaande validatiepaden.
|
||||
|
||||
Standaard heeft Chill een algemene workflow, die al geschikt is voor veel mogelijke gevallen.
|
||||
Standaard heeft Chill een algemene workflow, die al geschikt is voor veel mogelijke gevallen, maar anderen kunnen uiteraard ook worden geconfigureerd.
|
||||
|
@@ -1,8 +1,12 @@
|
||||
---
|
||||
title: en Brochure
|
||||
subtitle:
|
||||
title: Brochure
|
||||
description: Download, lees, print, en deel
|
||||
image:
|
||||
comments: false
|
||||
---
|
||||
|
||||
<p class="text-brochure">Als je meer wilt weten over Chill, download dan hier de brochure. Misschien wil je'm zelfs afdrukken en delen? ;-)</p>
|
||||
|
||||
<button class="btn-primary download">
|
||||
<a class="btn-primary" href="/Brochure_Chill_V9.zip">Download de brochure</a>
|
||||
</button>
|
||||
|
@@ -21,5 +21,6 @@ De handleiding is ook toegankelijk via een link in de voettekst van de toepassin
|
||||
|
||||
<h5 class="content-subtitle bord-2">Chill training</h5>
|
||||
|
||||
Vraag je Chill [provider](/get-chill/providers) om een Chill trainingsdag te organiseren.
|
||||
Vraag je Chill [provider](/nl/get-chill/providers) om een Chill trainingsdag te organiseren.
|
||||
|
||||
|
||||
|
45
go.mod
45
go.mod
@@ -3,27 +3,26 @@ module hugoplate.netlify.app
|
||||
go 1.20
|
||||
|
||||
require (
|
||||
github.com/gethugothemes/hugo-modules/accordion v0.0.0-20231001043352-2e720c5b7e8b // indirect
|
||||
github.com/gethugothemes/hugo-modules/adsense v0.0.0-20231001043352-2e720c5b7e8b // indirect
|
||||
github.com/gethugothemes/hugo-modules/components/cookie-consent v0.0.0-20231001043352-2e720c5b7e8b // indirect
|
||||
github.com/gethugothemes/hugo-modules/components/custom-script v0.0.0-20231001043352-2e720c5b7e8b // indirect
|
||||
github.com/gethugothemes/hugo-modules/components/preloader v0.0.0-20231001043352-2e720c5b7e8b // indirect
|
||||
github.com/gethugothemes/hugo-modules/components/render-link v0.0.0-20231001043352-2e720c5b7e8b // indirect
|
||||
github.com/gethugothemes/hugo-modules/components/social-share v0.0.0-20231001043352-2e720c5b7e8b // indirect
|
||||
github.com/gethugothemes/hugo-modules/gallery-slider v0.0.0-20231001043352-2e720c5b7e8b // indirect
|
||||
github.com/gethugothemes/hugo-modules/gzip-caching v0.0.0-20231001043352-2e720c5b7e8b // indirect
|
||||
github.com/gethugothemes/hugo-modules/icons/font-awesome v0.0.0-20231001043352-2e720c5b7e8b // indirect
|
||||
github.com/gethugothemes/hugo-modules/images v0.0.0-20231001043352-2e720c5b7e8b // indirect
|
||||
github.com/gethugothemes/hugo-modules/modal v0.0.0-20231001043352-2e720c5b7e8b // indirect
|
||||
github.com/gethugothemes/hugo-modules/pwa v0.0.0-20231001043352-2e720c5b7e8b // indirect
|
||||
github.com/gethugothemes/hugo-modules/search v0.0.0-20231001043352-2e720c5b7e8b // indirect
|
||||
github.com/gethugothemes/hugo-modules/seo-tools/basic-seo v0.0.0-20231001043352-2e720c5b7e8b // indirect
|
||||
github.com/gethugothemes/hugo-modules/seo-tools/google-tag-manager v0.0.0-20231001043352-2e720c5b7e8b // indirect
|
||||
github.com/gethugothemes/hugo-modules/seo-tools/site-verifications v0.0.0-20231001043352-2e720c5b7e8b // indirect
|
||||
github.com/gethugothemes/hugo-modules/shortcodes/button v0.0.0-20231001043352-2e720c5b7e8b // indirect
|
||||
github.com/gethugothemes/hugo-modules/shortcodes/notice v0.0.0-20231001043352-2e720c5b7e8b // indirect
|
||||
github.com/gethugothemes/hugo-modules/tab v0.0.0-20231001043352-2e720c5b7e8b // indirect
|
||||
github.com/gethugothemes/hugo-modules/table-of-contents v0.0.0-20231001043352-2e720c5b7e8b // indirect
|
||||
github.com/gethugothemes/hugo-modules/videos v0.0.0-20231001043352-2e720c5b7e8b // indirect
|
||||
github.com/zeon-studio/hugoplate v0.0.0-20230919033707-39e487943d6d // indirect
|
||||
github.com/gethugothemes/hugo-modules/accordion v0.0.0-20231213094845-42e6b5af6245 // indirect
|
||||
github.com/gethugothemes/hugo-modules/adsense v0.0.0-20231213094845-42e6b5af6245 // indirect
|
||||
github.com/gethugothemes/hugo-modules/components/cookie-consent v0.0.0-20231213094845-42e6b5af6245 // indirect
|
||||
github.com/gethugothemes/hugo-modules/components/custom-script v0.0.0-20231213094845-42e6b5af6245 // indirect
|
||||
github.com/gethugothemes/hugo-modules/components/preloader v0.0.0-20231213094845-42e6b5af6245 // indirect
|
||||
github.com/gethugothemes/hugo-modules/components/render-link v0.0.0-20231213094845-42e6b5af6245 // indirect
|
||||
github.com/gethugothemes/hugo-modules/components/social-share v0.0.0-20231213094845-42e6b5af6245 // indirect
|
||||
github.com/gethugothemes/hugo-modules/gallery-slider v0.0.0-20231213094845-42e6b5af6245 // indirect
|
||||
github.com/gethugothemes/hugo-modules/gzip-caching v0.0.0-20231213094845-42e6b5af6245 // indirect
|
||||
github.com/gethugothemes/hugo-modules/icons/font-awesome v0.0.0-20231213094845-42e6b5af6245 // indirect
|
||||
github.com/gethugothemes/hugo-modules/images v0.0.0-20231213094845-42e6b5af6245 // indirect
|
||||
github.com/gethugothemes/hugo-modules/modal v0.0.0-20231213094845-42e6b5af6245 // indirect
|
||||
github.com/gethugothemes/hugo-modules/pwa v0.0.0-20231213094845-42e6b5af6245 // indirect
|
||||
github.com/gethugothemes/hugo-modules/search v0.0.0-20231213094845-42e6b5af6245 // indirect
|
||||
github.com/gethugothemes/hugo-modules/seo-tools/basic-seo v0.0.0-20231213094845-42e6b5af6245 // indirect
|
||||
github.com/gethugothemes/hugo-modules/seo-tools/google-tag-manager v0.0.0-20231213094845-42e6b5af6245 // indirect
|
||||
github.com/gethugothemes/hugo-modules/seo-tools/site-verifications v0.0.0-20231213094845-42e6b5af6245 // indirect
|
||||
github.com/gethugothemes/hugo-modules/shortcodes/button v0.0.0-20231213094845-42e6b5af6245 // indirect
|
||||
github.com/gethugothemes/hugo-modules/shortcodes/notice v0.0.0-20231213094845-42e6b5af6245 // indirect
|
||||
github.com/gethugothemes/hugo-modules/tab v0.0.0-20231213094845-42e6b5af6245 // indirect
|
||||
github.com/gethugothemes/hugo-modules/table-of-contents v0.0.0-20231213094845-42e6b5af6245 // indirect
|
||||
github.com/gethugothemes/hugo-modules/videos v0.0.0-20231213094845-42e6b5af6245 // indirect
|
||||
)
|
||||
|
@@ -4,7 +4,7 @@
|
||||
baseURL = "/"
|
||||
|
||||
# Title of your website (required).
|
||||
title = "CHILL"
|
||||
title = "CHILL - Logiciel libre d'accompagnement social"
|
||||
|
||||
# Your theme name
|
||||
theme = "hugoplate"
|
||||
@@ -25,7 +25,7 @@ summaryLength = 10 # see https://gohugo.io/content-management/excerpts/
|
||||
#disqusShortname = "themefisher-template" # we use disqus to show comments in blog posts . To install disqus please follow this tutorial https://portfolio.peter-baumgartner.net/2017/09/10/how-to-install-disqus-on-hugo/
|
||||
|
||||
# disable language
|
||||
disableLanguages = []
|
||||
disableLanguages = []
|
||||
hasCJKLanguage = false # If hasCJKLanguage true, auto-detect Chinese/Japanese/Korean Languages in the content. see: https://gohugo.io/getting-started/configuration/#hascjklanguage
|
||||
defaultContentLanguage = "fr"
|
||||
|
||||
|
@@ -16,6 +16,12 @@ Follow these steps:
|
||||
6. In the package.json file change the dev command with `"hugo server --bind 0.0.0.0"`
|
||||
7. Launch the container again `docker-compose up --force-recreate`
|
||||
|
||||
# Deployment
|
||||
|
||||
1. Create a changie to keep track of the changes you made and create a new version.
|
||||
2. Launch the CI by tagging your last commits and pushing the tag. The tag should start with `v` and then the version number.
|
||||
3. Change the tag in ansible and apply the changes
|
||||
|
||||
--------------------
|
||||
|
||||
<h1 align="center">Hugo + Tailwind CSS Starter and Boilerplate</h1>
|
||||
|
BIN
static/Brochure_Chill_V9.zip
Normal file
BIN
static/Brochure_Chill_V9.zip
Normal file
Binary file not shown.
BIN
static/images/chill-admin.png
Normal file
BIN
static/images/chill-admin.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 5.9 KiB |
@@ -7,7 +7,7 @@
|
||||
{{ $pageLink := replace (replace $context.RelPermalink (add $pageLang "/") "") $base.Path "/" }}
|
||||
|
||||
{{ if $context.IsTranslated }}
|
||||
<select class="{{ $class }}" onchange="location = this.value">
|
||||
<select class="{{ $class }} lang-select" onchange="location = this.value">
|
||||
{{ range $siteLanguages }}
|
||||
{{ if eq (string $pageLang) (string .Language) }}
|
||||
<option
|
||||
|
Reference in New Issue
Block a user