Compare commits
67 Commits
vtest
..
61a7d0686c
| Author | SHA1 | Date | |
|---|---|---|---|
| 61a7d0686c | |||
| 7a9cc1aaec | |||
| 8749e5f207 | |||
| 58b9df92c0 | |||
| bbfc0949c4 | |||
| c392670539 | |||
| 7332eb3105 | |||
| 419d9b4b08 | |||
| 225890236d | |||
| e87bdce9e6 | |||
| 45b6edadf9 | |||
| 65813b6520 | |||
| 61e1a4b29f | |||
| 1ab1a092ab | |||
| a3383a97df | |||
| c350ea3dcd | |||
| 923b4c4d7f | |||
| 56bada18c3 | |||
| 5bd6f6047b | |||
| c5042105f9 | |||
| 4fceda15f2 | |||
| ffb90dcb2b | |||
| 793a27b65a | |||
| c18b8cbb0d | |||
| fe5736f64f | |||
| 96622d99b0 | |||
| 66dfa00b63 | |||
| 8ef0449741 | |||
| 65a3f370e1 | |||
| 77f020ae13 | |||
| 5c0487c90f | |||
| a191aa6623 | |||
| 8d19a4b421 | |||
| 7acc762a05 | |||
| 1beb5bb486 | |||
| 725a49f7c1 | |||
| a1592d49c2 | |||
| 007e9eec43 | |||
| 60550fe1b8 | |||
| f210dc7dcc | |||
| 9073e8b506 | |||
| 8c77a325f6 | |||
| a221d16827 | |||
| eccf151099 | |||
| 56dfa4c0ab | |||
| fe4fc1b4e3 | |||
| 39d0e05ae7 | |||
| 315ff26077 | |||
| c56d43b019 | |||
| c0d4ab041e | |||
| 651d2e4048 | |||
| 378d3be8c9 | |||
| cebda24a12 | |||
| eadf439d5f | |||
| bb769c8001 | |||
| d50f7013a9 | |||
| ad649599c9 | |||
| c57b4f9448 | |||
| cc60b64505 | |||
| 577786f22d | |||
| 7e28963a5d | |||
| f00db5a558 | |||
| 47d38a5dda | |||
| 7b98930deb | |||
| c92d34814c | |||
| ce4e946615 | |||
| e429e6f25b |
@@ -1,14 +0,0 @@
|
|||||||
; https://editorconfig.org
|
|
||||||
|
|
||||||
root = true
|
|
||||||
|
|
||||||
[*]
|
|
||||||
charset = utf-8
|
|
||||||
end_of_line = lf
|
|
||||||
indent_size = 2
|
|
||||||
indent_style = space
|
|
||||||
trim_trailing_whitespace = true
|
|
||||||
insert_final_newline = true
|
|
||||||
|
|
||||||
[*.md]
|
|
||||||
trim_trailing_whitespace = false
|
|
||||||
@@ -0,0 +1,11 @@
|
|||||||
|
# Configuration SMTP pour contact-backend.js
|
||||||
|
BASE_URL=http://localhost
|
||||||
|
SMTP_HOST=HOST
|
||||||
|
SMTP_PORT=PORT
|
||||||
|
SMTP_SECURE=false
|
||||||
|
SMTP_USER=USER
|
||||||
|
SMTP_FROM=FROM
|
||||||
|
SMTP_PASS=PASSWORD
|
||||||
|
PORT=PORT
|
||||||
|
|
||||||
|
|
||||||
@@ -1,73 +0,0 @@
|
|||||||
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: debug
|
|
||||||
run: ls -lah
|
|
||||||
|
|
||||||
- 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 }}'
|
|
||||||
+3
-2
@@ -9,9 +9,10 @@ node_modules
|
|||||||
builds
|
builds
|
||||||
package-lock.json
|
package-lock.json
|
||||||
public
|
public
|
||||||
resources
|
|
||||||
.hugo_build.lock
|
.hugo_build.lock
|
||||||
jsconfig.json
|
jsconfig.json
|
||||||
hugo_stats.json
|
hugo_stats.json
|
||||||
go.sum
|
go.sum
|
||||||
yarn.lock
|
yarn.lock
|
||||||
|
.idea/*
|
||||||
|
.env
|
||||||
@@ -1,38 +0,0 @@
|
|||||||
stages:
|
|
||||||
- build
|
|
||||||
|
|
||||||
variables:
|
|
||||||
HUGO_ENV: production
|
|
||||||
HUGO_VERSION: "0.118.2"
|
|
||||||
GO_VERSION: "1.20.5"
|
|
||||||
NODE_VERSION: "18.16.1"
|
|
||||||
|
|
||||||
cache:
|
|
||||||
paths:
|
|
||||||
- node_modules/
|
|
||||||
|
|
||||||
default:
|
|
||||||
image: node:${NODE_VERSION}
|
|
||||||
before_script:
|
|
||||||
- echo "USING NODE ${NODE_VERSION}"
|
|
||||||
- apt-get update && apt-get install -y curl
|
|
||||||
- curl -LO "https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION}/hugo_extended_${HUGO_VERSION}_Linux-64bit.tar.gz"
|
|
||||||
- tar -xvf hugo_extended_${HUGO_VERSION}_Linux-64bit.tar.gz
|
|
||||||
- mv hugo /usr/local/bin/
|
|
||||||
- rm hugo_extended_${HUGO_VERSION}_Linux-64bit.tar.gz
|
|
||||||
- echo "HUGO ${HUGO_VERSION} INSTALLED"
|
|
||||||
- curl -LO "https://dl.google.com/go/go${GO_VERSION}.linux-amd64.tar.gz"
|
|
||||||
- tar -C /usr/local -xzf go${GO_VERSION}.linux-amd64.tar.gz
|
|
||||||
- export PATH=$PATH:/usr/local/go/bin
|
|
||||||
- rm go${GO_VERSION}.linux-amd64.tar.gz
|
|
||||||
- echo "GO ${GO_VERSION} INSTALLED"
|
|
||||||
- npm install
|
|
||||||
|
|
||||||
pages:
|
|
||||||
stage: build
|
|
||||||
script:
|
|
||||||
- npm run project-setup
|
|
||||||
- npm run build
|
|
||||||
artifacts:
|
|
||||||
paths:
|
|
||||||
- public
|
|
||||||
Generated
-8
@@ -1,8 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<module type="WEB_MODULE" version="4">
|
|
||||||
<component name="NewModuleRootManager">
|
|
||||||
<content url="file://$MODULE_DIR$" />
|
|
||||||
<orderEntry type="inheritedJdk" />
|
|
||||||
<orderEntry type="sourceFolder" forTests="false" />
|
|
||||||
</component>
|
|
||||||
</module>
|
|
||||||
Generated
-62
@@ -1,62 +0,0 @@
|
|||||||
<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>
|
|
||||||
Generated
-5
@@ -1,5 +0,0 @@
|
|||||||
<component name="ProjectCodeStyleConfiguration">
|
|
||||||
<state>
|
|
||||||
<option name="USE_PER_PROJECT_SETTINGS" value="true" />
|
|
||||||
</state>
|
|
||||||
</component>
|
|
||||||
-6
@@ -1,6 +0,0 @@
|
|||||||
<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>
|
|
||||||
Generated
-16
@@ -1,16 +0,0 @@
|
|||||||
<?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>
|
|
||||||
Generated
-8
@@ -1,8 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<project version="4">
|
|
||||||
<component name="ProjectModuleManager">
|
|
||||||
<modules>
|
|
||||||
<module fileurl="file://$PROJECT_DIR$/.idea/chill_hugoplate.iml" filepath="$PROJECT_DIR$/.idea/chill_hugoplate.iml" />
|
|
||||||
</modules>
|
|
||||||
</component>
|
|
||||||
</project>
|
|
||||||
Generated
-19
@@ -1,19 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<project version="4">
|
|
||||||
<component name="MessDetectorOptionsConfiguration">
|
|
||||||
<option name="transferred" value="true" />
|
|
||||||
</component>
|
|
||||||
<component name="PHPCSFixerOptionsConfiguration">
|
|
||||||
<option name="transferred" value="true" />
|
|
||||||
</component>
|
|
||||||
<component name="PHPCodeSnifferOptionsConfiguration">
|
|
||||||
<option name="highlightLevel" value="WARNING" />
|
|
||||||
<option name="transferred" value="true" />
|
|
||||||
</component>
|
|
||||||
<component name="PhpStanOptionsConfiguration">
|
|
||||||
<option name="transferred" value="true" />
|
|
||||||
</component>
|
|
||||||
<component name="PsalmOptionsConfiguration">
|
|
||||||
<option name="transferred" value="true" />
|
|
||||||
</component>
|
|
||||||
</project>
|
|
||||||
Generated
-6
@@ -1,6 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<project version="4">
|
|
||||||
<component name="VcsDirectoryMappings">
|
|
||||||
<mapping directory="" vcs="Git" />
|
|
||||||
</component>
|
|
||||||
</project>
|
|
||||||
Generated
-99
@@ -1,99 +0,0 @@
|
|||||||
<?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>
|
|
||||||
@@ -1,59 +0,0 @@
|
|||||||
{
|
|
||||||
"maxerr": 50,
|
|
||||||
"bitwise": true,
|
|
||||||
"camelcase": false,
|
|
||||||
"curly": true,
|
|
||||||
"eqeqeq": true,
|
|
||||||
"forin": true,
|
|
||||||
"freeze": true,
|
|
||||||
"immed": true,
|
|
||||||
"indent": 2,
|
|
||||||
"latedef": true,
|
|
||||||
"newcap": false,
|
|
||||||
"noarg": true,
|
|
||||||
"noempty": true,
|
|
||||||
"nonbsp": true,
|
|
||||||
"nonew": true,
|
|
||||||
"plusplus": false,
|
|
||||||
"undef": true,
|
|
||||||
"unused": false,
|
|
||||||
"strict": true,
|
|
||||||
"maxparams": false,
|
|
||||||
"maxdepth": 4,
|
|
||||||
"maxstatements": false,
|
|
||||||
"maxcomplexity": false,
|
|
||||||
"maxlen": 400,
|
|
||||||
"browser": true,
|
|
||||||
"devel": true,
|
|
||||||
"asi": false,
|
|
||||||
"boss": false,
|
|
||||||
"debug": false,
|
|
||||||
"eqnull": false,
|
|
||||||
"es3": false,
|
|
||||||
"es5": false,
|
|
||||||
"esversion": 12,
|
|
||||||
"moz": false,
|
|
||||||
"evil": true,
|
|
||||||
"expr": true,
|
|
||||||
"funcscope": false,
|
|
||||||
"globalstrict": false,
|
|
||||||
"iterator": false,
|
|
||||||
"lastsemic": false,
|
|
||||||
"laxbreak": false,
|
|
||||||
"laxcomma": false,
|
|
||||||
"loopfunc": true,
|
|
||||||
"multistr": true,
|
|
||||||
"noyield": false,
|
|
||||||
"notypeof": false,
|
|
||||||
"proto": false,
|
|
||||||
"scripturl": false,
|
|
||||||
"shadow": false,
|
|
||||||
"sub": false,
|
|
||||||
"supernew": false,
|
|
||||||
"validthis": false,
|
|
||||||
"globals": {
|
|
||||||
"jQuery": false,
|
|
||||||
"google": false,
|
|
||||||
"$": false
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,5 +0,0 @@
|
|||||||
{
|
|
||||||
"MD033": false,
|
|
||||||
"MD034": false,
|
|
||||||
"MD013": false
|
|
||||||
}
|
|
||||||
-13
@@ -1,13 +0,0 @@
|
|||||||
{
|
|
||||||
"plugins": ["prettier-plugin-go-template"],
|
|
||||||
"overrides": [
|
|
||||||
{
|
|
||||||
"files": ["*.html"],
|
|
||||||
"options": {
|
|
||||||
"parser": "go-template",
|
|
||||||
"goTemplateBracketSpacing": true,
|
|
||||||
"bracketSameLine": true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
Vendored
-7
@@ -1,7 +0,0 @@
|
|||||||
{
|
|
||||||
"recommendations": [
|
|
||||||
"bradlc.vscode-tailwindcss",
|
|
||||||
"budparr.language-hugo-vscode",
|
|
||||||
"tamasfe.even-better-toml"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
+29
-2
@@ -1,3 +1,30 @@
|
|||||||
FROM caddy:2-alpine
|
FROM hugomods/hugo:latest
|
||||||
|
|
||||||
ADD public/ /usr/share/caddy/
|
# Installe Node.js et npm
|
||||||
|
USER root
|
||||||
|
RUN apk add --no-cache nodejs npm git
|
||||||
|
|
||||||
|
WORKDIR /src
|
||||||
|
|
||||||
|
# Copie package.json et package-lock.json si présent
|
||||||
|
COPY package.json ./
|
||||||
|
|
||||||
|
# Installation des dépendances
|
||||||
|
RUN npm install --save-dev sass
|
||||||
|
|
||||||
|
# Copie le reste du code
|
||||||
|
COPY . .
|
||||||
|
|
||||||
|
# Build CSS (tailwind + scss)
|
||||||
|
RUN npm run build
|
||||||
|
|
||||||
|
|
||||||
|
EXPOSE 1313 3001
|
||||||
|
|
||||||
|
CMD ["sh", "-c", "set -a; [ -f .env ] && . ./.env; set +a; BASE_URL=${BASE_URL:-http://localhost}; node contact-backend.js & hugo server -D --bind 0.0.0.0 --baseURL ${BASE_URL}:1313 --appendPort=false"]
|
||||||
|
|
||||||
|
# @TODO: Ajouter une étape de build pour générer les fichiers statiques de Hugo
|
||||||
|
# gunzippé et optimisé pour la production
|
||||||
|
# utilisé Nginx plutot que serveur
|
||||||
|
# créer des étapes de build pour la compilation et la copie des fichier sur le serveur nginx
|
||||||
|
# docker build -t hugo-site:latest .
|
||||||
|
|||||||
@@ -0,0 +1,87 @@
|
|||||||
|
|
||||||
|
# Démarrage avec Docker
|
||||||
|
|
||||||
|
## Builder ou re-builder l'image Docker
|
||||||
|
|
||||||
|
Pour construire ou reconstruire l'image Docker (forcer le rebuild même si une image existe déjà) :
|
||||||
|
|
||||||
|
```bash
|
||||||
|
docker build --no-cache -t chill-site:latest .
|
||||||
|
```
|
||||||
|
|
||||||
|
## Lancer le site en local avec un nom de conteneur
|
||||||
|
|
||||||
|
```bash
|
||||||
|
docker run --name chill-site-container -p 1313:1313 -p 3001:3001 -d chill-site:latest
|
||||||
|
```
|
||||||
|
|
||||||
|
Pour relancer après un arrêt :
|
||||||
|
|
||||||
|
```bash
|
||||||
|
docker start chill-site-container
|
||||||
|
```
|
||||||
|
|
||||||
|
Pour supprimer le conteneur (si besoin de re-builder et relancer) :
|
||||||
|
|
||||||
|
```bash
|
||||||
|
docker rm -f chill-site-container
|
||||||
|
```
|
||||||
|
|
||||||
|
Le site sera accessible sur http://localhost:1313
|
||||||
|
|
||||||
|
## Utiliser le backend de contact
|
||||||
|
|
||||||
|
Le formulaire de contact du site envoie les données vers un backend Node.js défini dans `contact-backend.js`.
|
||||||
|
|
||||||
|
### 1. Configurer les variables d'environnement
|
||||||
|
|
||||||
|
Créer un fichier `.env` à la racine du projet (ou copier `.env.template`) et renseigner :
|
||||||
|
|
||||||
|
```bash
|
||||||
|
SMTP_HOST=smtp.example.com
|
||||||
|
SMTP_PORT=587
|
||||||
|
SMTP_SECURE=false
|
||||||
|
SMTP_USER=utilisateur@example.com
|
||||||
|
SMTP_FROM=utilisateur@example.com
|
||||||
|
SMTP_PASS=mot_de_passe
|
||||||
|
PORT=3001
|
||||||
|
```
|
||||||
|
|
||||||
|
Notes :
|
||||||
|
- `SMTP_SECURE=true` en général pour le port 465.
|
||||||
|
- `SMTP_SECURE=false` en général pour les ports 587 et 25.
|
||||||
|
|
||||||
|
### 2. Installer les dépendances Node.js
|
||||||
|
|
||||||
|
Si ce n'est pas déjà fait :
|
||||||
|
|
||||||
|
```bash
|
||||||
|
npm install
|
||||||
|
```
|
||||||
|
|
||||||
|
### 3. Démarrer le backend contact
|
||||||
|
|
||||||
|
```bash
|
||||||
|
node contact-backend.js
|
||||||
|
```
|
||||||
|
|
||||||
|
Le serveur écoute par défaut sur `http://localhost:3001` et expose l'endpoint `POST /contact`.
|
||||||
|
|
||||||
|
### 4. Vérifier l'URL du formulaire
|
||||||
|
|
||||||
|
Dans `content/contact.md`, la valeur `contactForm.action` doit pointer vers le backend :
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
contactForm:
|
||||||
|
action: "http://localhost:3001/contact"
|
||||||
|
```
|
||||||
|
|
||||||
|
### 5. Lancer le site Hugo
|
||||||
|
|
||||||
|
Dans un autre terminal :
|
||||||
|
|
||||||
|
```bash
|
||||||
|
npm run start
|
||||||
|
```
|
||||||
|
|
||||||
|
Le formulaire sera alors fonctionnel en local, à condition que le backend tourne en même temps.
|
||||||
-29
@@ -1,29 +0,0 @@
|
|||||||
version: 1
|
|
||||||
frontend:
|
|
||||||
phases:
|
|
||||||
preBuild:
|
|
||||||
commands:
|
|
||||||
- yum install -y curl
|
|
||||||
- curl -LO "https://github.com/gohugoio/hugo/releases/download/v0.118.2/hugo_extended_0.118.2_Linux-64bit.tar.gz"
|
|
||||||
- tar -xvf hugo_extended_0.118.2_Linux-64bit.tar.gz
|
|
||||||
- mv hugo /usr/local/bin/
|
|
||||||
- rm hugo_extended_0.118.2_Linux-64bit.tar.gz
|
|
||||||
- echo "HUGO 0.118.2 INSTALLED"
|
|
||||||
- curl -LO "https://dl.google.com/go/go1.20.5.linux-amd64.tar.gz"
|
|
||||||
- tar -C /usr/local -xzf go1.20.5.linux-amd64.tar.gz
|
|
||||||
- export PATH=$PATH:/usr/local/go/bin
|
|
||||||
- rm go1.20.5.linux-amd64.tar.gz
|
|
||||||
- echo "GO 1.20.5 INSTALLED"
|
|
||||||
- npm install
|
|
||||||
build:
|
|
||||||
commands:
|
|
||||||
- npm run project-setup
|
|
||||||
- npm run build
|
|
||||||
artifacts:
|
|
||||||
# IMPORTANT - Please verify your build output directory
|
|
||||||
baseDirectory: /public
|
|
||||||
files:
|
|
||||||
- "**/*"
|
|
||||||
cache:
|
|
||||||
paths:
|
|
||||||
- node_modules/**/*
|
|
||||||
@@ -0,0 +1,5 @@
|
|||||||
|
+++
|
||||||
|
date = '{{ .Date }}'
|
||||||
|
draft = true
|
||||||
|
title = '{{ replace .File.ContentBaseName "-" " " | title }}'
|
||||||
|
+++
|
||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -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.
|
||||||
Binary file not shown.
|
Before Width: | Height: | Size: 1020 B |
+84
-61
@@ -1,14 +1,27 @@
|
|||||||
///// HOMEPAGE
|
///// HOMEPAGE
|
||||||
|
|
||||||
/// Chill brand colors
|
/// Chill brand colors
|
||||||
$chill-blue: #334d5c;
|
$chill-blue: #333333;
|
||||||
$chill-green: rgba(67, 178, 157, 0.61);
|
$chill-green: #43B09B;
|
||||||
$chill-beige: #d3c7b1;
|
$chill-yellow: #EDC74B;
|
||||||
$chill-red: #dc516d;
|
$chill-orange: #E27A3E;
|
||||||
$chill-pink: #e57469;
|
$chill-red: #DE4849;
|
||||||
$chill-orange: #e89463;
|
$chill-lightgray: #EBEBEB;
|
||||||
$chill-lightgray: #efefef;
|
$chill-beige: #C9B99E;
|
||||||
$chill-yellow: #f1d275;
|
$chill-pink: #D50B51;
|
||||||
|
|
||||||
|
$chill-light-blue: #a0dcff;
|
||||||
|
|
||||||
|
.activity-sector-collectivities{ --bg-color: #a0dcff; }
|
||||||
|
.activity-sector-associations{ --bg-color: #a0dcff; }
|
||||||
|
|
||||||
|
.badge-generation-document { --badge-color: #D50B51; }
|
||||||
|
.badge-rapport-rgpd { --badge-color: #43B09B; }
|
||||||
|
.badge-rapports-statistiques { --badge-color: #C9B99E; }
|
||||||
|
.badge-suivi-accompagnements { --badge-color: #EDC74B; }
|
||||||
|
.badge-suivi-decisions { --badge-color: #a0dcff; }
|
||||||
|
.badge-suivi-usagers{ --badge-color: #333333; }
|
||||||
|
.badge-rendez-vous{ --badge-color: #E27A3E; }
|
||||||
|
|
||||||
/// Other custom colors
|
/// Other custom colors
|
||||||
$bg-dark-blue: #0d242e;
|
$bg-dark-blue: #0d242e;
|
||||||
@@ -18,6 +31,14 @@ $text-green: #56c4aa;
|
|||||||
$red: #f0384d;
|
$red: #f0384d;
|
||||||
$yellow: #fcc958;
|
$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
|
// Pattern
|
||||||
@mixin add-bg-pattern($id) {
|
@mixin add-bg-pattern($id) {
|
||||||
background-repeat: repeat;
|
background-repeat: repeat;
|
||||||
@@ -66,11 +87,9 @@ $yellow: #fcc958;
|
|||||||
}
|
}
|
||||||
|
|
||||||
body{
|
body{
|
||||||
font-family: 'Lato', serif;
|
font-family: 'Lato', sans-serif;
|
||||||
.highlight {
|
.highlight {
|
||||||
padding: .5rem;
|
padding: .25rem;
|
||||||
font-family: 'Trocchi', serif;
|
|
||||||
font-size: 2rem;
|
|
||||||
}
|
}
|
||||||
.highlight-1 {
|
.highlight-1 {
|
||||||
background-color: $chill-green;
|
background-color: $chill-green;
|
||||||
@@ -87,24 +106,33 @@ body{
|
|||||||
header.header {
|
header.header {
|
||||||
background-color: $bg-dark-blue;
|
background-color: $bg-dark-blue;
|
||||||
}
|
}
|
||||||
|
footer.footer {
|
||||||
|
background-color: $bg-dark-blue;
|
||||||
|
}
|
||||||
|
|
||||||
.chill-pres {
|
.chill-pres {
|
||||||
padding-top: 0rem;
|
padding-top: 0rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
main > section {
|
.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;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
section {
|
||||||
&.hero {
|
&.hero {
|
||||||
height: 100vh;
|
|
||||||
background-color: $bg-dark-blue;
|
background-color: $bg-dark-blue;
|
||||||
h1 { color: $chill-green; }
|
h1 { color: $chill-green; }
|
||||||
.hero-img {
|
|
||||||
padding-top: 3rem;
|
|
||||||
}
|
|
||||||
.btn-primary {
|
|
||||||
background-color: $orange;
|
|
||||||
color: white;
|
|
||||||
border-color: $orange;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
&.section-1 {
|
&.section-1 {
|
||||||
background-color: white;
|
background-color: white;
|
||||||
@@ -295,13 +323,15 @@ section {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Dark context (homepage header, hero, footer)
|
|
||||||
// Overwrite primary button design
|
.download {
|
||||||
.btn-primary {
|
margin-right: auto;
|
||||||
background-color: $orange;
|
margin-left: auto;
|
||||||
color: white;
|
display: block;
|
||||||
border: 1px solid $orange;
|
a {
|
||||||
border-radius: 2em;
|
text-decoration: none;
|
||||||
|
padding: .5rem;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Dark but only in sections
|
// Dark but only in sections
|
||||||
@@ -319,33 +349,23 @@ section.dark {
|
|||||||
|
|
||||||
///// PAGES
|
///// PAGES
|
||||||
|
|
||||||
main > section {
|
.content-subtitle {
|
||||||
&.page-hero {
|
padding-left: 2rem;
|
||||||
height: 40vh;
|
font-weight: bold;
|
||||||
background-color: $bg-dark-blue;
|
|
||||||
@include add-bg-pattern(1);
|
|
||||||
h1 { color: $text-green; }
|
|
||||||
i {
|
|
||||||
color: $chill-lightgray;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.content-subtitle {
|
|
||||||
text-transform: uppercase;
|
|
||||||
padding-left: 2rem;
|
|
||||||
}
|
|
||||||
.bord-1 {
|
|
||||||
border-left: 4px solid $chill-orange;
|
|
||||||
}
|
|
||||||
.bord-2 {
|
|
||||||
border-left: 4px solid $chill-beige;
|
|
||||||
}
|
|
||||||
.bord-3 {
|
|
||||||
border-left: 4px solid $chill-yellow;
|
|
||||||
}
|
|
||||||
.bord-4 {
|
|
||||||
border-left: 4px solid $chill-green;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
.bord-1 {
|
||||||
|
border-left: 4px solid $chill-orange;
|
||||||
|
}
|
||||||
|
.bord-2 {
|
||||||
|
border-left: 4px solid $chill-beige;
|
||||||
|
}
|
||||||
|
.bord-3 {
|
||||||
|
border-left: 4px solid $chill-yellow;
|
||||||
|
}
|
||||||
|
.bord-4 {
|
||||||
|
border-left: 4px solid $chill-green;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
.chapo {
|
.chapo {
|
||||||
font-size: large;
|
font-size: large;
|
||||||
@@ -391,9 +411,13 @@ figure.image {
|
|||||||
figcaption {}
|
figcaption {}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.text-brochure {
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
// RESPONSIVENESS
|
// RESPONSIVENESS
|
||||||
|
|
||||||
@media screen and (max-width: 1279px) {
|
@media screen and (max-width: 1536px) {
|
||||||
section {
|
section {
|
||||||
&.li-block {
|
&.li-block {
|
||||||
&.section-5 {
|
&.section-5 {
|
||||||
@@ -411,7 +435,7 @@ figure.image {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: 1023px) {
|
@media screen and (max-width: 1023px) {
|
||||||
main > section {
|
section {
|
||||||
&.section-4 {
|
&.section-4 {
|
||||||
h4 {
|
h4 {
|
||||||
height: 224px;
|
height: 224px;
|
||||||
@@ -439,7 +463,7 @@ figure.image {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: 767px) {
|
@media screen and (max-width: 767px) {
|
||||||
main > section {
|
section {
|
||||||
&.hero {
|
&.hero {
|
||||||
height: 110vh;
|
height: 110vh;
|
||||||
}
|
}
|
||||||
@@ -504,7 +528,7 @@ figure.image {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: 513px) {
|
@media screen and (max-width: 513px) {
|
||||||
main > section {
|
section {
|
||||||
&.hero {
|
&.hero {
|
||||||
height: 120vh;
|
height: 120vh;
|
||||||
}
|
}
|
||||||
@@ -527,7 +551,7 @@ figure.image {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: 470px) {
|
@media screen and (max-width: 470px) {
|
||||||
main > section {
|
section {
|
||||||
&.section-4 {
|
&.section-4 {
|
||||||
h4 {
|
h4 {
|
||||||
height: 280px;
|
height: 280px;
|
||||||
@@ -578,4 +602,3 @@ figure.image {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1,17 +0,0 @@
|
|||||||
[fr]
|
|
||||||
languageName = "FR"
|
|
||||||
languageCode = "fr-be"
|
|
||||||
contentDir = "content/francais"
|
|
||||||
weight = 1
|
|
||||||
|
|
||||||
[nl]
|
|
||||||
languageName = "NL"
|
|
||||||
languageCode = "nl-be"
|
|
||||||
contentDir = "content/nederlands"
|
|
||||||
weight = 2
|
|
||||||
|
|
||||||
[en]
|
|
||||||
languageName = "EN"
|
|
||||||
languageCode = "en-us"
|
|
||||||
contentDir = "content/english"
|
|
||||||
weight = 3
|
|
||||||
@@ -1,104 +0,0 @@
|
|||||||
############# English navigation ##############
|
|
||||||
|
|
||||||
[[main]]
|
|
||||||
name = "Functionalities"
|
|
||||||
url = "presentation/"
|
|
||||||
weight = 2
|
|
||||||
|
|
||||||
[[main]]
|
|
||||||
parent = "Functionalities"
|
|
||||||
name = "Follow-up individuals"
|
|
||||||
url = "presentation/persons"
|
|
||||||
weight = 1
|
|
||||||
|
|
||||||
[[main]]
|
|
||||||
parent = "Functionalities"
|
|
||||||
name = "Follow-up support plan"
|
|
||||||
url = "presentation/accompanying-courses"
|
|
||||||
weight = 3
|
|
||||||
|
|
||||||
[[main]]
|
|
||||||
parent = "Functionalities"
|
|
||||||
name = "Follow-up decisions"
|
|
||||||
url = "presentation/workflow"
|
|
||||||
weight = 4
|
|
||||||
|
|
||||||
[[main]]
|
|
||||||
parent = "Functionalities"
|
|
||||||
name = "Generation of documents"
|
|
||||||
url = "presentation/doc-generation"
|
|
||||||
weight = 5
|
|
||||||
|
|
||||||
[[main]]
|
|
||||||
parent = "Functionalities"
|
|
||||||
name = "Export statistics"
|
|
||||||
url = "presentation/export-stats"
|
|
||||||
weight = 6
|
|
||||||
|
|
||||||
[[main]]
|
|
||||||
parent = "Functionalities"
|
|
||||||
name = "Roadmap"
|
|
||||||
url = "presentation/roadmap"
|
|
||||||
weight = 7
|
|
||||||
|
|
||||||
#############
|
|
||||||
|
|
||||||
[[main]]
|
|
||||||
name = "Getting started"
|
|
||||||
hasChildren = true
|
|
||||||
weight = 3
|
|
||||||
|
|
||||||
[[main]]
|
|
||||||
parent = "Getting started"
|
|
||||||
name = "As a user"
|
|
||||||
url = "start/user"
|
|
||||||
weight = 1
|
|
||||||
|
|
||||||
[[main]]
|
|
||||||
parent = "Getting started"
|
|
||||||
name = "As developer"
|
|
||||||
url = "start/developper"
|
|
||||||
weight = 2
|
|
||||||
|
|
||||||
#############
|
|
||||||
|
|
||||||
[[main]]
|
|
||||||
name = "Get Chill"
|
|
||||||
hasChildren = true
|
|
||||||
weight = 4
|
|
||||||
|
|
||||||
[[main]]
|
|
||||||
parent = "Get Chill"
|
|
||||||
url = "get-chill/install"
|
|
||||||
name = "Install Chill"
|
|
||||||
weight = 1
|
|
||||||
|
|
||||||
[[main]]
|
|
||||||
parent = "Get Chill"
|
|
||||||
url = "get-chill/configuration"
|
|
||||||
name = "Configuration"
|
|
||||||
weight = 2
|
|
||||||
|
|
||||||
[[main]]
|
|
||||||
parent = "Get Chill"
|
|
||||||
url = "get-chill/providers"
|
|
||||||
name = "Providers"
|
|
||||||
weight = 3
|
|
||||||
|
|
||||||
#############
|
|
||||||
|
|
||||||
# footer menu
|
|
||||||
[[footer]]
|
|
||||||
name = "About us"
|
|
||||||
url = "about/"
|
|
||||||
weight = 1
|
|
||||||
|
|
||||||
[[footer]]
|
|
||||||
name = "Elements"
|
|
||||||
url = "elements/"
|
|
||||||
weight = 2
|
|
||||||
|
|
||||||
[[footer]]
|
|
||||||
name = "Privacy"
|
|
||||||
url = "privacy-policy/"
|
|
||||||
weight = 3
|
|
||||||
@@ -1,110 +0,0 @@
|
|||||||
############# French navigation ##############
|
|
||||||
|
|
||||||
[[main]]
|
|
||||||
name = "Fonctionnalités"
|
|
||||||
url = "presentation/"
|
|
||||||
weight = 2
|
|
||||||
|
|
||||||
[[main]]
|
|
||||||
parent = "Fonctionnalités"
|
|
||||||
name = "Suivi des usagers"
|
|
||||||
url = "presentation/persons"
|
|
||||||
weight = 1
|
|
||||||
|
|
||||||
[[main]]
|
|
||||||
parent = "Fonctionnalités"
|
|
||||||
name = "Suivi des accompagnements"
|
|
||||||
url = "presentation/accompanying-courses"
|
|
||||||
weight = 2
|
|
||||||
|
|
||||||
[[main]]
|
|
||||||
parent = "Fonctionnalités"
|
|
||||||
name = "Suivi des décisions"
|
|
||||||
url = "presentation/workflow"
|
|
||||||
weight = 3
|
|
||||||
|
|
||||||
[[main]]
|
|
||||||
parent = "Fonctionnalités"
|
|
||||||
name = "Génération de documents"
|
|
||||||
url = "presentation/doc-generation"
|
|
||||||
weight = 4
|
|
||||||
|
|
||||||
[[main]]
|
|
||||||
parent = "Fonctionnalités"
|
|
||||||
name = "Export des statistiques"
|
|
||||||
url = "presentation/export-stats"
|
|
||||||
weight = 5
|
|
||||||
|
|
||||||
[[main]]
|
|
||||||
parent = "Fonctionnalités"
|
|
||||||
name = "Feuille de route"
|
|
||||||
url = "presentation/roadmap"
|
|
||||||
weight = 6
|
|
||||||
|
|
||||||
#############
|
|
||||||
|
|
||||||
[[main]]
|
|
||||||
name = "Pour commencer"
|
|
||||||
hasChildren = true
|
|
||||||
weight = 3
|
|
||||||
|
|
||||||
[[main]]
|
|
||||||
parent = "Pour commencer"
|
|
||||||
name = "Comme utilisateur"
|
|
||||||
url = "start/user"
|
|
||||||
weight = 1
|
|
||||||
|
|
||||||
[[main]]
|
|
||||||
parent = "Pour commencer"
|
|
||||||
name = "Comme développeur"
|
|
||||||
url = "start/developper"
|
|
||||||
weight = 2
|
|
||||||
|
|
||||||
#############
|
|
||||||
|
|
||||||
[[main]]
|
|
||||||
name = "Obtenir Chill"
|
|
||||||
hasChildren = true
|
|
||||||
weight = 4
|
|
||||||
|
|
||||||
[[main]]
|
|
||||||
parent = "Obtenir Chill"
|
|
||||||
url = "get-chill/install"
|
|
||||||
name = "Installer Chill"
|
|
||||||
weight = 1
|
|
||||||
|
|
||||||
[[main]]
|
|
||||||
parent = "Obtenir Chill"
|
|
||||||
url = "get-chill/configuration"
|
|
||||||
name = "Support à la configuration"
|
|
||||||
weight = 2
|
|
||||||
|
|
||||||
[[main]]
|
|
||||||
parent = "Obtenir Chill"
|
|
||||||
url = "get-chill/providers"
|
|
||||||
name = "Trouver un prestataire"
|
|
||||||
weight = 3
|
|
||||||
|
|
||||||
#############
|
|
||||||
|
|
||||||
# footer menu
|
|
||||||
[[footer]]
|
|
||||||
name = "À propos"
|
|
||||||
url = "about/"
|
|
||||||
weight = 1
|
|
||||||
|
|
||||||
[[footer]]
|
|
||||||
name = "Vie privée"
|
|
||||||
url = "privacy-policy/"
|
|
||||||
weight = 2
|
|
||||||
|
|
||||||
[[footer]]
|
|
||||||
name = "Brochure"
|
|
||||||
url = "start/flyer"
|
|
||||||
weight = 3
|
|
||||||
|
|
||||||
[[footer]]
|
|
||||||
name = "Manuel"
|
|
||||||
url = "https://gitea.champs-libres.be/Chill-project/manuals/releases"
|
|
||||||
weight = 4
|
|
||||||
|
|
||||||
@@ -1,104 +0,0 @@
|
|||||||
############# Dutch navigation ##############
|
|
||||||
|
|
||||||
[[main]]
|
|
||||||
name = "Functionaliteiten"
|
|
||||||
url = "presentation/"
|
|
||||||
weight = 1
|
|
||||||
|
|
||||||
[[main]]
|
|
||||||
parent = "Functionaliteiten"
|
|
||||||
name = "Opvolging van personen"
|
|
||||||
url = "presentation/persons"
|
|
||||||
weight = 1
|
|
||||||
|
|
||||||
[[main]]
|
|
||||||
parent = "Functionaliteiten"
|
|
||||||
name = "Opvolging hulpverleningstrajecten"
|
|
||||||
url = "presentation/accompanying-courses"
|
|
||||||
weight = 2
|
|
||||||
|
|
||||||
[[main]]
|
|
||||||
parent = "Functionaliteiten"
|
|
||||||
name = "Opvolging beslissingen"
|
|
||||||
url = "presentation/workflow"
|
|
||||||
weight = 3
|
|
||||||
|
|
||||||
[[main]]
|
|
||||||
parent = "Functionaliteiten"
|
|
||||||
name = "Genereren van documenten"
|
|
||||||
url = "presentation/doc-generation"
|
|
||||||
weight = 4
|
|
||||||
|
|
||||||
[[main]]
|
|
||||||
parent = "Functionaliteiten"
|
|
||||||
name = "Exporteren van statistieken"
|
|
||||||
url = "presentation/export-stats"
|
|
||||||
weight = 5
|
|
||||||
|
|
||||||
[[main]]
|
|
||||||
parent = "Functionaliteiten"
|
|
||||||
name = "Roadmap"
|
|
||||||
url = "presentation/roadmap"
|
|
||||||
weight = 6
|
|
||||||
|
|
||||||
#############
|
|
||||||
|
|
||||||
[[main]]
|
|
||||||
name = "Om te beginnen"
|
|
||||||
hasChildren = true
|
|
||||||
weight = 3
|
|
||||||
|
|
||||||
[[main]]
|
|
||||||
parent = "Om te beginnen"
|
|
||||||
name = "Als gebruiker"
|
|
||||||
url = "start/user"
|
|
||||||
weight = 1
|
|
||||||
|
|
||||||
[[main]]
|
|
||||||
parent = "Om te beginnen"
|
|
||||||
name = "Als ontwikkelaar"
|
|
||||||
url = "start/developper"
|
|
||||||
weight = 2
|
|
||||||
|
|
||||||
#############
|
|
||||||
|
|
||||||
[[main]]
|
|
||||||
name = "Chill verkrijgen"
|
|
||||||
hasChildren = true
|
|
||||||
weight = 4
|
|
||||||
|
|
||||||
[[main]]
|
|
||||||
parent = "Chill verkrijgen"
|
|
||||||
url = "get-chill/install"
|
|
||||||
name = "Chill installeren"
|
|
||||||
weight = 1
|
|
||||||
|
|
||||||
[[main]]
|
|
||||||
parent = "Chill verkrijgen"
|
|
||||||
url = "get-chill/configuration"
|
|
||||||
name = "Configuratie"
|
|
||||||
weight = 2
|
|
||||||
|
|
||||||
[[main]]
|
|
||||||
parent = "Chill verkrijgen"
|
|
||||||
url = "get-chill/providers"
|
|
||||||
name = "Leveranciers"
|
|
||||||
weight = 3
|
|
||||||
|
|
||||||
#############
|
|
||||||
|
|
||||||
# footer menu
|
|
||||||
[[footer]]
|
|
||||||
name = "Over ons"
|
|
||||||
url = "about/"
|
|
||||||
weight = 1
|
|
||||||
|
|
||||||
[[footer]]
|
|
||||||
name = "Elementen"
|
|
||||||
url = "elements/"
|
|
||||||
weight = 2
|
|
||||||
|
|
||||||
[[footer]]
|
|
||||||
name = "Privacy"
|
|
||||||
url = "privacy-policy/"
|
|
||||||
weight = 3
|
|
||||||
@@ -1,93 +0,0 @@
|
|||||||
[hugoVersion]
|
|
||||||
extended = true
|
|
||||||
min = "0.115.2"
|
|
||||||
|
|
||||||
# [[imports]]
|
|
||||||
# path = "github.com/zeon-studio/hugoplate"
|
|
||||||
|
|
||||||
[[imports]]
|
|
||||||
path = "github.com/gethugothemes/hugo-modules/search"
|
|
||||||
|
|
||||||
[[imports]]
|
|
||||||
path = "github.com/gethugothemes/hugo-modules/pwa"
|
|
||||||
|
|
||||||
[[imports]]
|
|
||||||
path = "github.com/gethugothemes/hugo-modules/images"
|
|
||||||
|
|
||||||
[[imports]]
|
|
||||||
path = "github.com/gethugothemes/hugo-modules/videos"
|
|
||||||
|
|
||||||
[[imports]]
|
|
||||||
path = "github.com/gethugothemes/hugo-modules/icons/font-awesome"
|
|
||||||
|
|
||||||
# [[imports]]
|
|
||||||
# path = "github.com/gethugothemes/hugo-modules/icons/themify-icons"
|
|
||||||
|
|
||||||
[[imports]]
|
|
||||||
path = "github.com/gethugothemes/hugo-modules/gzip-caching"
|
|
||||||
|
|
||||||
[[imports]]
|
|
||||||
path = "github.com/gethugothemes/hugo-modules/adsense"
|
|
||||||
|
|
||||||
[[imports]]
|
|
||||||
path = "github.com/gethugothemes/hugo-modules/accordion"
|
|
||||||
|
|
||||||
[[imports]]
|
|
||||||
path = "github.com/gethugothemes/hugo-modules/table-of-contents"
|
|
||||||
|
|
||||||
[[imports]]
|
|
||||||
path = "github.com/gethugothemes/hugo-modules/tab"
|
|
||||||
|
|
||||||
[[imports]]
|
|
||||||
path = "github.com/gethugothemes/hugo-modules/modal"
|
|
||||||
|
|
||||||
[[imports]]
|
|
||||||
path = "github.com/gethugothemes/hugo-modules/gallery-slider"
|
|
||||||
|
|
||||||
[[imports]]
|
|
||||||
path = "github.com/gethugothemes/hugo-modules/components/preloader"
|
|
||||||
|
|
||||||
[[imports]]
|
|
||||||
path = "github.com/gethugothemes/hugo-modules/components/social-share"
|
|
||||||
|
|
||||||
[[imports]]
|
|
||||||
path = "github.com/gethugothemes/hugo-modules/components/cookie-consent"
|
|
||||||
|
|
||||||
[[imports]]
|
|
||||||
path = "github.com/gethugothemes/hugo-modules/components/custom-script"
|
|
||||||
|
|
||||||
[[imports]]
|
|
||||||
path = "github.com/gethugothemes/hugo-modules/components/render-link"
|
|
||||||
|
|
||||||
# [[imports]]
|
|
||||||
# path = "github.com/gethugothemes/hugo-modules/components/valine-comment"
|
|
||||||
|
|
||||||
# [[imports]]
|
|
||||||
# path = "github.com/gethugothemes/hugo-modules/components/crisp-chat"
|
|
||||||
|
|
||||||
[[imports]]
|
|
||||||
path = "github.com/gethugothemes/hugo-modules/shortcodes/button"
|
|
||||||
|
|
||||||
[[imports]]
|
|
||||||
path = "github.com/gethugothemes/hugo-modules/shortcodes/notice"
|
|
||||||
|
|
||||||
[[imports]]
|
|
||||||
path = "github.com/gethugothemes/hugo-modules/seo-tools/basic-seo"
|
|
||||||
|
|
||||||
[[imports]]
|
|
||||||
path = "github.com/gethugothemes/hugo-modules/seo-tools/site-verifications"
|
|
||||||
|
|
||||||
[[imports]]
|
|
||||||
path = "github.com/gethugothemes/hugo-modules/seo-tools/google-tag-manager"
|
|
||||||
|
|
||||||
# [[imports]]
|
|
||||||
# path = "github.com/gethugothemes/hugo-modules/seo-tools/baidu-analytics"
|
|
||||||
|
|
||||||
# [[imports]]
|
|
||||||
# path = "github.com/gethugothemes/hugo-modules/seo-tools/matomo-analytics"
|
|
||||||
|
|
||||||
# [[imports]]
|
|
||||||
# path = "github.com/gethugothemes/hugo-modules/seo-tools/plausible-analytics"
|
|
||||||
|
|
||||||
# [[imports]]
|
|
||||||
# path = "github.com/gethugothemes/hugo-modules/seo-tools/counter-analytics"
|
|
||||||
@@ -1,112 +0,0 @@
|
|||||||
#################### default parameters ################################
|
|
||||||
# favicon
|
|
||||||
favicon = "images/favicon.png"
|
|
||||||
|
|
||||||
# logo
|
|
||||||
logo = "images/logo.png"
|
|
||||||
logo_darkmode = "images/logo-darkmode.png"
|
|
||||||
|
|
||||||
# use `px` or `x` with logo_width, example: "100px".
|
|
||||||
# Note: logo_width is not work with .svg file
|
|
||||||
logo_width = "160px"
|
|
||||||
logo_height = "32px"
|
|
||||||
|
|
||||||
# if logo_webp set false, will not generate WEBP version of logo | default is true
|
|
||||||
logo_webp = true
|
|
||||||
|
|
||||||
# logo text will only show when logo is missing.
|
|
||||||
logo_text = "CHILL logo"
|
|
||||||
|
|
||||||
# navbar fixed to top
|
|
||||||
navbar_fixed = false
|
|
||||||
|
|
||||||
# theme-mode
|
|
||||||
# available options [light/dark/system]
|
|
||||||
theme_switcher = false
|
|
||||||
theme_default = "light"
|
|
||||||
|
|
||||||
# Main Sections
|
|
||||||
mainSections = ["blog"]
|
|
||||||
|
|
||||||
# contact form action
|
|
||||||
contact_form_action = "#" # contact form works with [https://airform.io/] or [https://formspree.io]
|
|
||||||
|
|
||||||
# google tag manager, see https://developers.google.com/tag-manager/
|
|
||||||
# google_tag_manager = "" # example: G-XXXXXXXXXX
|
|
||||||
# google_adsense = "" # example: ca-pub-xxxxxxxxxxxxxxxx
|
|
||||||
|
|
||||||
# custom script on header, example: custom_script= "<script>console.log(\"Hello World\")</script>"
|
|
||||||
custom_script = ""
|
|
||||||
|
|
||||||
# copyright
|
|
||||||
copyright = "Designed & Developed by [Zeon Studio](https://zeon.studio)"
|
|
||||||
#copyright = "Designed & Developed by [Yellow Studio]() and [Champs Libres]()"
|
|
||||||
|
|
||||||
# Preloader
|
|
||||||
# preloader module: https://github.com/gethugothemes/hugo-modules/tree/master/components/preloader
|
|
||||||
[preloader]
|
|
||||||
enable = false
|
|
||||||
preloader = "" # use jpg, png, svg or gif format.
|
|
||||||
|
|
||||||
# Navigation button
|
|
||||||
[navigation_button]
|
|
||||||
enable = true
|
|
||||||
label = "Demo"
|
|
||||||
link = "http://demo.chill.social"
|
|
||||||
|
|
||||||
# search
|
|
||||||
# search module: https://github.com/gethugothemes/hugo-modules/tree/master/search
|
|
||||||
[search]
|
|
||||||
enable = true
|
|
||||||
primary_color = "#121212"
|
|
||||||
include_sections = ["blog"]
|
|
||||||
show_image = true
|
|
||||||
show_description = true
|
|
||||||
show_tags = true
|
|
||||||
show_categories = true
|
|
||||||
|
|
||||||
|
|
||||||
# seo meta data for OpenGraph / Twitter Card
|
|
||||||
# seo module: https://github.com/gethugothemes/hugo-modules/tree/master/seo-tools/basic-seo
|
|
||||||
[metadata]
|
|
||||||
keywords = ["Boilerplate", "Hugo"]
|
|
||||||
description = "Hugo & Tailwindcss Starter"
|
|
||||||
author = "zeon.studio"
|
|
||||||
image = "images/og-image.png"
|
|
||||||
|
|
||||||
|
|
||||||
# site verifications
|
|
||||||
# verification module: https://github.com/gethugothemes/hugo-modules/tree/master/seo-tools/site-verifications
|
|
||||||
# [site_verification]
|
|
||||||
# google = "" # Your verification code
|
|
||||||
# bing = "" # Your verification code
|
|
||||||
# baidu = "" # Your verification code
|
|
||||||
# facebook = "" # Your verification code
|
|
||||||
# mastodon = "" # Your verification code
|
|
||||||
|
|
||||||
# cookies
|
|
||||||
# cookies module: https://github.com/gethugothemes/hugo-modules/tree/master/components/cookie-consent
|
|
||||||
[cookies]
|
|
||||||
enable = false
|
|
||||||
expire_days = 60
|
|
||||||
content = "This site uses cookies. By continuing to use this website, you agree to their use."
|
|
||||||
button = "I Accept"
|
|
||||||
|
|
||||||
######################## sidebar widgets #########################
|
|
||||||
[widgets]
|
|
||||||
sidebar = ["categories", "tags"]
|
|
||||||
|
|
||||||
# google map
|
|
||||||
# [google_map]
|
|
||||||
# enable = false
|
|
||||||
# map_api_key = "AIzaSyCcABaamniA6OL5YvYSpB3pFMNrXwXnLwU"
|
|
||||||
# map_latitude = "51.5223477"
|
|
||||||
# map_longitude = "-0.1622023"
|
|
||||||
# map_marker = "images/marker.png"
|
|
||||||
|
|
||||||
# Subscription
|
|
||||||
# [subscription]
|
|
||||||
# enable = false
|
|
||||||
# mailchimp subsciption
|
|
||||||
# mailchimp_form_action = "https://gmail.us4.list-manage.com/subscribe/post?u=463ee871f45d2d93748e77cad&id=a0a2c6d074" # replace this url with yours
|
|
||||||
# mailchimp_form_name = "b_463ee871f45d2d93748e77cad_a0a2c6d074"
|
|
||||||
@@ -0,0 +1,60 @@
|
|||||||
|
// Backend minimal Node.js pour traiter le formulaire de contact Hugo
|
||||||
|
// Place ce fichier à la racine du projet ou dans un dossier backend/
|
||||||
|
// Nécessite: npm install express nodemailer cors
|
||||||
|
|
||||||
|
|
||||||
|
require('dotenv').config();
|
||||||
|
const express = require('express');
|
||||||
|
const nodemailer = require('nodemailer');
|
||||||
|
const cors = require('cors');
|
||||||
|
const multer = require('multer');
|
||||||
|
const upload = multer();
|
||||||
|
const app = express();
|
||||||
|
const PORT = process.env.PORT || 3001;
|
||||||
|
|
||||||
|
// Middleware
|
||||||
|
app.use(cors());
|
||||||
|
// NE PAS utiliser express.urlencoded/json pour /contact, sinon req.body sera vide avec FormData
|
||||||
|
|
||||||
|
// Configurer le transporteur SMTP depuis .env
|
||||||
|
const transporter = nodemailer.createTransport({
|
||||||
|
host: process.env.SMTP_HOST,
|
||||||
|
port: parseInt(process.env.SMTP_PORT, 10),
|
||||||
|
secure: process.env.SMTP_SECURE === 'true',
|
||||||
|
auth: {
|
||||||
|
user: process.env.SMTP_USER,
|
||||||
|
pass: process.env.SMTP_PASS
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
app.post('/contact', upload.none(), async (req, res) => {
|
||||||
|
// Vérification de la présence de req.body
|
||||||
|
if (!req.body) {
|
||||||
|
console.log(req.body);
|
||||||
|
return res.status(400).send('Aucune donnée reçue.');
|
||||||
|
}
|
||||||
|
// Anti-robot honeypot
|
||||||
|
if (req.body.website && req.body.website.trim() !== '') {
|
||||||
|
return res.status(400).send('Bot détecté.');
|
||||||
|
}
|
||||||
|
const { email, subject, message } = req.body;
|
||||||
|
if (!email || !subject || !message) {
|
||||||
|
return res.status(400).send('Champs manquants');
|
||||||
|
}
|
||||||
|
try {
|
||||||
|
await transporter.sendMail({
|
||||||
|
from: process.env.SMTP_USER,
|
||||||
|
to: process.env.SMTP_USER,
|
||||||
|
replyTo: email,
|
||||||
|
subject: `Contact site: ${subject}`,
|
||||||
|
text: `Email: ${email}\nSujet: ${subject}\nMessage:\n${message}`
|
||||||
|
});
|
||||||
|
res.status(200).send('Message envoyé !');
|
||||||
|
} catch (err) {
|
||||||
|
res.status(500).send("Erreur d'envoi: " + err.message);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
app.listen(PORT, () => {
|
||||||
|
console.log(`Serveur contact en écoute sur http://localhost:${PORT}`);
|
||||||
|
});
|
||||||
@@ -0,0 +1,157 @@
|
|||||||
|
---
|
||||||
|
title: Home
|
||||||
|
client_logos:
|
||||||
|
- name: "amli"
|
||||||
|
logo: "/images/logos/amli.png"
|
||||||
|
- name: "cigales"
|
||||||
|
logo: "/images/logos/cigales.jpg"
|
||||||
|
- name: "cire"
|
||||||
|
logo: "/images/logos/cire.png"
|
||||||
|
- name: "doucheflux"
|
||||||
|
logo: "/images/logos/doucheflux.jpg"
|
||||||
|
- name: "dune"
|
||||||
|
logo: "/images/logos/dune.png"
|
||||||
|
- name: "haute-vienne"
|
||||||
|
logo: "/images/logos/haute-vienne.png"
|
||||||
|
- name: "resad"
|
||||||
|
logo: "/images/logos/resad.png"
|
||||||
|
- name: "rixensart"
|
||||||
|
logo: "/images/logos/rixensart.webp"
|
||||||
|
- name: "samusocial"
|
||||||
|
logo: "/images/logos/samusocial.png"
|
||||||
|
- name: "SIDASOL"
|
||||||
|
logo: "/images/logos/SIDASOL.png"
|
||||||
|
- name: "SMES"
|
||||||
|
logo: "/images/logos/SMES.webp"
|
||||||
|
- name: "st-gilles"
|
||||||
|
logo: "/images/logos/st-gilles.jpg"
|
||||||
|
- name: "stemm"
|
||||||
|
logo: "/images/logos/stemm.png"
|
||||||
|
- name: "vendée"
|
||||||
|
logo: "/images/logos/vendée.png"
|
||||||
|
- name: "reseauhepatitec"
|
||||||
|
logo: "/images/logos/reseauhepatitec.webp"
|
||||||
|
# testimonials:
|
||||||
|
# - name: "John Smith"
|
||||||
|
# title: "CTO at TechStartup"
|
||||||
|
# avatar: "/images/testimonial-1.svg"
|
||||||
|
# quote: "We built our SaaS website in record time. The performance is incredible, and our users love the modern, clean design."
|
||||||
|
# - name: "Sarah Johnson"
|
||||||
|
# title: "Founder at WebFlow"
|
||||||
|
# avatar: "/images/testimonial-1.svg"
|
||||||
|
# quote: "The combination of Hugo and TailwindCSS delivers lightning-fast performance. Our website loads instantly, which has significantly improved our conversion rates."
|
||||||
|
# - name: "Michael Chen"
|
||||||
|
# title: "Lead Developer at CloudTech"
|
||||||
|
# avatar: "/images/testimonial-1.svg"
|
||||||
|
# quote: "This theme made it easy to create a professional SaaS website. The build times are incredibly fast, and the code is clean and maintainable."
|
||||||
|
---
|
||||||
|
|
||||||
|
{{< hero
|
||||||
|
headline="Le logiciel libre pensé pour les travailleurs sociaux"
|
||||||
|
sub_headline="Gagnez du temps, sécurisez vos données et restez indépendants avec une solution ouverte et collaborative!"
|
||||||
|
primary_button_text="Essayer la démo"
|
||||||
|
primary_button_url="http://demo.chill.social/"
|
||||||
|
secondary_button_text="Réserver une démo"
|
||||||
|
secondary_button_url="/contact"
|
||||||
|
custom_class="hero"
|
||||||
|
hero_image="/images/hero-dashboard.webp"
|
||||||
|
>}}
|
||||||
|
{{< features-carousel title="Découvrez les fonctionnalité qui font de CHILL <br> l’allié incontournable des travailleurs sociaux" background-color="#f1f5f9" >}}
|
||||||
|
{
|
||||||
|
"features": [
|
||||||
|
{
|
||||||
|
"title": "Suivi des usagers",
|
||||||
|
"titleBtn": "Usagers",
|
||||||
|
"description": "CHILL vous offre une gestion complète et structurée des dossiers individuels, facilitant le suivi personnalisé de chaque usager.",
|
||||||
|
"badge": "Usagers",
|
||||||
|
"badgeColor": "suivi-usagers",
|
||||||
|
"image": "/images/features/HP-suiviusager.png",
|
||||||
|
"buttonText": "En savoir plus",
|
||||||
|
"buttonLink": "/features/suivi-usagers/",
|
||||||
|
"features": "Fiche individuelle détaillée|Gestion des ménages|Suivi budgétaire|Personnes ressources|Génération de documents|Enregistrement de tâches",
|
||||||
|
"imagePosition": "right"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"title": "Suivi des accompagnements",
|
||||||
|
"titleBtn": "Accompagnements",
|
||||||
|
"description": "Créez et suivez un ou plusieurs parcours d’accompagnement pour chaque usager, du diagnostic initial aux actions entreprises et aux progrès réalisés.",
|
||||||
|
"badge": "Accompagnements",
|
||||||
|
"badgeColor": "suivi-accompagnements",
|
||||||
|
"image": "/images/features/HP-accompagnement.png",
|
||||||
|
"buttonText": "En savoir plus",
|
||||||
|
"buttonLink": "/features/suivi-accompagnements/",
|
||||||
|
"features": "Création de parcours|Caractérisation des parcours avec des problématiques sociales|Mise en place de rendez-vous avec envoi de sms de rappel|Enregistrement d'échanges|Traduction des conseils et orientations données en actions|Partage de l'information entre collègues via des notifications",
|
||||||
|
"imagePosition": "left"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"title": "Génération de documents",
|
||||||
|
"titleBtn": "Documents",
|
||||||
|
"description": "Grâce à un système de modèles personnalisables, vous pouvez générer automatiquement des documents avec un large éventail d’informations déjà pré-remplies à partir des données présentes dans l’application.",
|
||||||
|
"badge": "Documents",
|
||||||
|
"badgeColor": "generation-document",
|
||||||
|
"image": "/images/features/HP-documents.png",
|
||||||
|
"buttonText": "En savoir plus",
|
||||||
|
"buttonLink": "/features/generation-documents/",
|
||||||
|
"features": "Informations sur l'usager|Informations sur le ménage|Détails financiers ou sociaux|Et bien plus encore...",
|
||||||
|
"imagePosition": "right"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"title": "Rendez-vous",
|
||||||
|
"titleBtn": "Rendez-vous",
|
||||||
|
"description": "Planifiez, organisez et suivez efficacement vos rendez-vous, que ce soit pour vous-même ou pour vos collègues.",
|
||||||
|
"badge": "Rendez-vous",
|
||||||
|
"badgeColor": "rendez-vous",
|
||||||
|
"image": "/images/features/HP-rendez-vous.png",
|
||||||
|
"buttonText": "En savoir plus",
|
||||||
|
"buttonLink": "/features/rendez-vous/",
|
||||||
|
"features": "Ajout de plages de disponibilité |Planification de rendez-vous entre collègues|Synchronisation avec les agendas éléctroniques (connecteur avec Outlook, Zimbra, etc)|Possibilité d'envoi de rappels par sms|Transformation du rendez-vous en échange"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"title": "Suivi des décisions",
|
||||||
|
"titleBtn": "Décisions",
|
||||||
|
"description": "CHILL facilite le suivi et la validation de décisions au sein d’une équipe.",
|
||||||
|
"badge": "Décisions",
|
||||||
|
"badgeColor": "suivi-decisions",
|
||||||
|
"image": "/images/features/HP-décisions.png",
|
||||||
|
"buttonText": "En savoir plus",
|
||||||
|
"buttonLink": "/features/suivi-decisions/",
|
||||||
|
"features": "Structuration des décisions et des actions|Personnalisation des étapes du workflow|Définition des rôles et responsabilités de chacun|Notifications automatiques liées aux décisions|Suivi global de l’avancement",
|
||||||
|
"imagePosition": "right"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"title": "Rapports statistiques",
|
||||||
|
"titleBtn": "Statistiques",
|
||||||
|
"description": "CHILL facilite la génération et l’extraction de statistiques croisées sur le travail d’accompagnement social et les bénéficiaires.",
|
||||||
|
"badge": "Statistiques",
|
||||||
|
"badgeColor": "rapports-statistiques",
|
||||||
|
"image": "/images/features/HP-exports.png",
|
||||||
|
"buttonText": "En savoir plus",
|
||||||
|
"buttonLink": "/features/rapports-statistiques",
|
||||||
|
"features": "Données de l’usager|Données des ménages|Actions d’accompagnement|Problématiques sociales|Rendez-vous|Et bien plus encore...",
|
||||||
|
"imagePosition": "left"
|
||||||
|
},
|
||||||
|
|
||||||
|
{
|
||||||
|
"title": "Droits d'accès",
|
||||||
|
"titleBtn": "Droits d'accès",
|
||||||
|
"description": "CHILL respecte scrupuleusement les principes du RGPD de privacy by design et security by design, en offrant la possibilité aux administrateurs de paramétrer différents rôles, cercles d’utilisateurs et règles d’accès aux contenus.",
|
||||||
|
"badge": "Droits d'accès",
|
||||||
|
"badgeColor": "rapport-rgpd",
|
||||||
|
"image": "/images/features/HP-droitsdacces.png",
|
||||||
|
"buttonText": "En savoir plus",
|
||||||
|
"buttonLink": "/features/rapports-rgpd/",
|
||||||
|
"features": "",
|
||||||
|
"imagePosition": "left"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
{{< /features-carousel >}}
|
||||||
|
{{< client-logos title="Ils font déjà confiance à CHILL" >}}
|
||||||
|
<!-- {{< testimonials
|
||||||
|
title="Ils nous font confiance"
|
||||||
|
descriptions="Flexible et évolutif, CHILL accompagne aussi bien les petites associations que les grandes structures. Son développement participatif, mené avec des travailleurs sociaux de secteurs variés, garantit un outil fidèle aux réalités du terrain.,,Découvrez leurs témoignages"
|
||||||
|
animate="true"
|
||||||
|
background-color="#f1f5f9"
|
||||||
|
>}} -->
|
||||||
|
|
||||||
|
{{< cta >}}
|
||||||
@@ -0,0 +1,45 @@
|
|||||||
|
---
|
||||||
|
title: "Nous contacter"
|
||||||
|
layout: "simple"
|
||||||
|
contactForm:
|
||||||
|
title: "Formulaire de contact"
|
||||||
|
developers:
|
||||||
|
title: "Échanger avec les développeurs"
|
||||||
|
description: "Il existe un salon sur la messagerie Matrix, pour échanger avec les développeurs de Chill."
|
||||||
|
linkDescription: "Pour le rejoindre cliquez sur le lien ci-dessous :"
|
||||||
|
linkLabel: "#chill-social-admin:matrix.org"
|
||||||
|
linkUrl: "https://matrix.to/#/#chill-social-admin:matrix.org"
|
||||||
|
qrLabel: "ou scannez le code QR :"
|
||||||
|
qrImg: "/images/chill-admin.png"
|
||||||
|
fields:
|
||||||
|
- name: "subject"
|
||||||
|
label: "Sujet"
|
||||||
|
type: "select"
|
||||||
|
required: true
|
||||||
|
options:
|
||||||
|
- value: "demo"
|
||||||
|
label: "Demander une démo"
|
||||||
|
- value: "quote"
|
||||||
|
label: "Demander un devis"
|
||||||
|
- value: "training"
|
||||||
|
label: "Formation"
|
||||||
|
- value: "support"
|
||||||
|
label: "Support technique"
|
||||||
|
|
||||||
|
- value: "other"
|
||||||
|
label: "Autre"
|
||||||
|
- name: "email"
|
||||||
|
label: "Adresse email"
|
||||||
|
type: "email"
|
||||||
|
required: true
|
||||||
|
- name: "message"
|
||||||
|
label: "Votre message"
|
||||||
|
type: "textarea"
|
||||||
|
required: true
|
||||||
|
hint: "Vous trouverez peut être réponse à votre question via notre [FAQ](/resources/faq)"
|
||||||
|
button:
|
||||||
|
label: "Envoyer le message"
|
||||||
|
color: "primary"
|
||||||
|
size: "md"
|
||||||
|
---
|
||||||
|
{{< contact-form >}}
|
||||||
@@ -1,101 +0,0 @@
|
|||||||
---
|
|
||||||
banner:
|
|
||||||
|
|
||||||
class: dark
|
|
||||||
image: /images/illustrations/hero-image.png
|
|
||||||
title: A social worker's companion
|
|
||||||
content: >
|
|
||||||
An open source web application dedicated to facilitating social work.
|
|
||||||
bulletpoints:
|
|
||||||
button:
|
|
||||||
enable: true
|
|
||||||
label: Try the demo
|
|
||||||
link: http://demo.chill.social
|
|
||||||
|
|
||||||
features:
|
|
||||||
|
|
||||||
- #1
|
|
||||||
class: section-md li-block
|
|
||||||
image: /images/svg/curve-10.svg ##
|
|
||||||
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
|
|
||||||
button:
|
|
||||||
enable: false
|
|
||||||
label: Button label
|
|
||||||
link: #
|
|
||||||
|
|
||||||
- #2
|
|
||||||
class: section-sm big-text
|
|
||||||
image: /images/svg/curve-20.svg ##
|
|
||||||
title: <span class="highlight highlight-1">CHILL,</span> is here to <span class="highlight highlight-2">lighten</span> the load of your adminstration tasks and to give you an <span class="highlight highlight-3">overview</span><br>of your work at all times.
|
|
||||||
content: >
|
|
||||||
bulletpoints:
|
|
||||||
button:
|
|
||||||
enable: false
|
|
||||||
label: Button label
|
|
||||||
link: #
|
|
||||||
|
|
||||||
- #3
|
|
||||||
class:
|
|
||||||
image: /images/illustrations/collection-1.png
|
|
||||||
title: Efficient and intuitive
|
|
||||||
content: "Parmi ses fonctionnalités les plus appréciées, il vous permet en quelques clics :"
|
|
||||||
bulletpoints:
|
|
||||||
- to find information on persons in your care with ease ;
|
|
||||||
- "to automatically generate a wide variety of documents and forms ;"
|
|
||||||
- to set **appointments** for people with SMS reminders, and synchronized online calendars ;
|
|
||||||
- to track decisions on **documents** and forms requiring the decision of several staff members ;
|
|
||||||
- to attach **documents** to any folder by simply dragging and dropping them from your mailbox, computer, etc.;
|
|
||||||
- to manage **access rights** to user files by service and location, or even make certain files completely confidential.
|
|
||||||
button:
|
|
||||||
enable: false
|
|
||||||
label: Button label
|
|
||||||
link: #
|
|
||||||
|
|
||||||
- #4
|
|
||||||
class: big-text
|
|
||||||
image: /images/bg/pattern-10.png ##
|
|
||||||
title:
|
|
||||||
content: <h4>CHILL offers a range of teaching aids and manuals, enabling users and administrators to operate and configure CHILL independently.</h4>
|
|
||||||
bulletpoints:
|
|
||||||
button:
|
|
||||||
enable: true
|
|
||||||
label: Support et manuels
|
|
||||||
link: start/user
|
|
||||||
|
|
||||||
- #5
|
|
||||||
class: li-block
|
|
||||||
image: /images/svg/curve-30.svg ##
|
|
||||||
title: But also...
|
|
||||||
content: CHILL is a professional software package designed according to current development standards..
|
|
||||||
bulletpoints:
|
|
||||||
- <h5 class='mb-4'>Responsive and accessible</h5> Chill does not mind adapting itself to your mobile screen.
|
|
||||||
- <h5 class='mb-4'>Turn-key solution</h5> Numerous configuration options to meet your needs.
|
|
||||||
- <h5 class='mb-4'>Respects RGPD principles</h5> The ability to set different roles and access rules ensures your data stays secure and privacy is respected.
|
|
||||||
- <h5 class='mb-4'>Chill = open-source</h5> Its source code remains open and in a process of continuous improvement.
|
|
||||||
button:
|
|
||||||
enable: false
|
|
||||||
label: Button label
|
|
||||||
link: #
|
|
||||||
|
|
||||||
- #6
|
|
||||||
class: dark
|
|
||||||
image: /images/illustrations/collection-2.png
|
|
||||||
title:
|
|
||||||
content: >
|
|
||||||
CHILL is flexible and adaptable to a wide range of situations, from large to small structures.
|
|
||||||
<br><br>
|
|
||||||
CHILL was developed as part of a participatory process with social workers from different sectors, to ensure that the software met their needs and a diversity of field realities.
|
|
||||||
<br><br>
|
|
||||||
bulletpoints:
|
|
||||||
button:
|
|
||||||
enable: false
|
|
||||||
label: Button label
|
|
||||||
link: #
|
|
||||||
|
|
||||||
---
|
|
||||||
@@ -1,9 +0,0 @@
|
|||||||
---
|
|
||||||
title: "Hey, I am John Doe!"
|
|
||||||
meta_title: "About"
|
|
||||||
description: "this is meta description"
|
|
||||||
image: "/images/avatar.png"
|
|
||||||
draft: false
|
|
||||||
---
|
|
||||||
|
|
||||||
Lorem ipsum dolor sit amet consectetur adipisicing elit. Corporis illum nesciunt commodi vel nisi ut alias excepturi ipsum, totam, labore tempora, odit ex iste tempore sed. Fugit voluptatibus perspiciatis assumenda nulla ad nihil, omnis vel, doloremque sit quam autem optio maiores, illum eius facilis et quo consectetur provident dolor similique! Enim voluptatem dicta expedita veritatis repellat dolorum impedit, provident quasi at.
|
|
||||||
@@ -1,3 +0,0 @@
|
|||||||
---
|
|
||||||
title: "Authors"
|
|
||||||
---
|
|
||||||
@@ -1,20 +0,0 @@
|
|||||||
---
|
|
||||||
title: John Doe
|
|
||||||
email: johndoe@email.com
|
|
||||||
image: "/images/avatar.png"
|
|
||||||
description: this is meta description
|
|
||||||
social:
|
|
||||||
- name: github
|
|
||||||
icon: fa-brands fa-github
|
|
||||||
link: https://github.com
|
|
||||||
|
|
||||||
- name: twitter
|
|
||||||
icon: fa-brands fa-twitter
|
|
||||||
link: https://twitter.com
|
|
||||||
|
|
||||||
- name: linkedin
|
|
||||||
icon: fa-brands fa-linkedin
|
|
||||||
link: https://linkedin.com
|
|
||||||
---
|
|
||||||
|
|
||||||
lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostr navigation et dolore magna aliqua.
|
|
||||||
@@ -1,20 +0,0 @@
|
|||||||
---
|
|
||||||
title: Sam Wilson
|
|
||||||
email: samwilson@email.com
|
|
||||||
image: "/images/avatar.png"
|
|
||||||
description: this is meta description
|
|
||||||
social:
|
|
||||||
- name: github
|
|
||||||
icon: fa-brands fa-github
|
|
||||||
link: https://github.com
|
|
||||||
|
|
||||||
- name: twitter
|
|
||||||
icon: fa-brands fa-twitter
|
|
||||||
link: https://twitter.com
|
|
||||||
|
|
||||||
- name: linkedin
|
|
||||||
icon: fa-brands fa-linkedin
|
|
||||||
link: https://linkedin.com
|
|
||||||
---
|
|
||||||
|
|
||||||
lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostr navigation et dolore magna aliqua.
|
|
||||||
@@ -1,20 +0,0 @@
|
|||||||
---
|
|
||||||
title: William Jacob
|
|
||||||
email: williamjacob@email.com
|
|
||||||
image: "/images/avatar.png"
|
|
||||||
description: this is meta description
|
|
||||||
social:
|
|
||||||
- name: github
|
|
||||||
icon: fa-brands fa-github
|
|
||||||
link: https://github.com
|
|
||||||
|
|
||||||
- name: twitter
|
|
||||||
icon: fa-brands fa-twitter
|
|
||||||
link: https://twitter.com
|
|
||||||
|
|
||||||
- name: linkedin
|
|
||||||
icon: fa-brands fa-linkedin
|
|
||||||
link: https://linkedin.com
|
|
||||||
---
|
|
||||||
|
|
||||||
lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostr navigation et dolore magna aliqua.
|
|
||||||
@@ -1,5 +0,0 @@
|
|||||||
---
|
|
||||||
title: "Blog Posts"
|
|
||||||
meta_title: ""
|
|
||||||
description: "this is meta description"
|
|
||||||
---
|
|
||||||
@@ -1,23 +0,0 @@
|
|||||||
---
|
|
||||||
title: "How to build an Application with modern Technology"
|
|
||||||
meta_title: ""
|
|
||||||
description: "this is meta description"
|
|
||||||
date: 2022-04-04T05:00:00Z
|
|
||||||
image: "/images/image-placeholder.png"
|
|
||||||
categories: ["Application", "Data"]
|
|
||||||
author: "John Doe"
|
|
||||||
tags: ["nextjs", "tailwind"]
|
|
||||||
draft: false
|
|
||||||
---
|
|
||||||
|
|
||||||
Nemo vel ad consectetur namut rutrum ex, venenatis sollicitudin urna. Aliquam erat volutpat. Integer eu ipsum sem. Ut bibendum lacus vestibulum maximus suscipit. Quisque vitae nibh iaculis neque blandit euismod.
|
|
||||||
|
|
||||||
Lorem ipsum dolor sit amet consectetur adipisicing elit. Nemo vel ad consectetur ut aperiam. Itaque eligendi natus aperiam? Excepturi repellendus consequatur quibusdam optio expedita praesentium est adipisci dolorem ut eius!
|
|
||||||
|
|
||||||
## Creative Design
|
|
||||||
|
|
||||||
Nam ut rutrum ex, venenatis sollicitudin urna. Aliquam erat volutpat. Integer eu ipsum sem. Ut bibendum lacus vestibulum maximus suscipit. Quisque vitae nibh iaculis neque blandit euismod.
|
|
||||||
|
|
||||||
> Lorem ipsum dolor sit amet consectetur adipisicing elit. Nemo vel ad consectetur ut aperiam. Itaque eligendi natus aperiam? Excepturi repellendus consequatur quibusdam optio expedita praesentium est adipisci dolorem ut eius!
|
|
||||||
|
|
||||||
Lorem ipsum dolor sit amet consectetur adipisicing elit. Nemo vel ad consectetur ut aperiam. Itaque eligendi natus aperiam? Excepturi repellendus consequatur quibusdam optio expedita praesentium est adipisci dolorem ut eius!
|
|
||||||
@@ -1,23 +0,0 @@
|
|||||||
---
|
|
||||||
title: "How to build an Application with modern Technology"
|
|
||||||
meta_title: ""
|
|
||||||
description: "this is meta description"
|
|
||||||
date: 2022-04-04T05:00:00Z
|
|
||||||
image: "/images/image-placeholder.png"
|
|
||||||
categories: ["Technology", "Data"]
|
|
||||||
author: "Sam Wilson"
|
|
||||||
tags: ["technology", "tailwind"]
|
|
||||||
draft: false
|
|
||||||
---
|
|
||||||
|
|
||||||
Nemo vel ad consectetur namut rutrum ex, venenatis sollicitudin urna. Aliquam erat volutpat. Integer eu ipsum sem. Ut bibendum lacus vestibulum maximus suscipit. Quisque vitae nibh iaculis neque blandit euismod.
|
|
||||||
|
|
||||||
Lorem ipsum dolor sit amet consectetur adipisicing elit. Nemo vel ad consectetur ut aperiam. Itaque eligendi natus aperiam? Excepturi repellendus consequatur quibusdam optio expedita praesentium est adipisci dolorem ut eius!
|
|
||||||
|
|
||||||
## Creative Design
|
|
||||||
|
|
||||||
Nam ut rutrum ex, venenatis sollicitudin urna. Aliquam erat volutpat. Integer eu ipsum sem. Ut bibendum lacus vestibulum maximus suscipit. Quisque vitae nibh iaculis neque blandit euismod.
|
|
||||||
|
|
||||||
> Lorem ipsum dolor sit amet consectetur adipisicing elit. Nemo vel ad consectetur ut aperiam. Itaque eligendi natus aperiam? Excepturi repellendus consequatur quibusdam optio expedita praesentium est adipisci dolorem ut eius!
|
|
||||||
|
|
||||||
Lorem ipsum dolor sit amet consectetur adipisicing elit. Nemo vel ad consectetur ut aperiam. Itaque eligendi natus aperiam? Excepturi repellendus consequatur quibusdam optio expedita praesentium est adipisci dolorem ut eius!
|
|
||||||
@@ -1,23 +0,0 @@
|
|||||||
---
|
|
||||||
title: "How to build an Application with modern Technology"
|
|
||||||
meta_title: ""
|
|
||||||
description: "this is meta description"
|
|
||||||
date: 2022-04-04T05:00:00Z
|
|
||||||
image: "/images/image-placeholder.png"
|
|
||||||
categories: ["Software"]
|
|
||||||
author: "John Doe"
|
|
||||||
tags: ["software", "tailwind"]
|
|
||||||
draft: false
|
|
||||||
---
|
|
||||||
|
|
||||||
Nemo vel ad consectetur namut rutrum ex, venenatis sollicitudin urna. Aliquam erat volutpat. Integer eu ipsum sem. Ut bibendum lacus vestibulum maximus suscipit. Quisque vitae nibh iaculis neque blandit euismod.
|
|
||||||
|
|
||||||
Lorem ipsum dolor sit amet consectetur adipisicing elit. Nemo vel ad consectetur ut aperiam. Itaque eligendi natus aperiam? Excepturi repellendus consequatur quibusdam optio expedita praesentium est adipisci dolorem ut eius!
|
|
||||||
|
|
||||||
## Creative Design
|
|
||||||
|
|
||||||
Nam ut rutrum ex, venenatis sollicitudin urna. Aliquam erat volutpat. Integer eu ipsum sem. Ut bibendum lacus vestibulum maximus suscipit. Quisque vitae nibh iaculis neque blandit euismod.
|
|
||||||
|
|
||||||
> Lorem ipsum dolor sit amet consectetur adipisicing elit. Nemo vel ad consectetur ut aperiam. Itaque eligendi natus aperiam? Excepturi repellendus consequatur quibusdam optio expedita praesentium est adipisci dolorem ut eius!
|
|
||||||
|
|
||||||
Lorem ipsum dolor sit amet consectetur adipisicing elit. Nemo vel ad consectetur ut aperiam. Itaque eligendi natus aperiam? Excepturi repellendus consequatur quibusdam optio expedita praesentium est adipisci dolorem ut eius!
|
|
||||||
@@ -1,23 +0,0 @@
|
|||||||
---
|
|
||||||
title: "How to build an Application with modern Technology"
|
|
||||||
meta_title: ""
|
|
||||||
description: "this is meta description"
|
|
||||||
date: 2022-04-04T05:00:00Z
|
|
||||||
image: "/images/image-placeholder.png"
|
|
||||||
categories: ["Architecture"]
|
|
||||||
author: "John Doe"
|
|
||||||
tags: ["silicon", "technology"]
|
|
||||||
draft: false
|
|
||||||
---
|
|
||||||
|
|
||||||
Nemo vel ad consectetur namut rutrum ex, venenatis sollicitudin urna. Aliquam erat volutpat. Integer eu ipsum sem. Ut bibendum lacus vestibulum maximus suscipit. Quisque vitae nibh iaculis neque blandit euismod.
|
|
||||||
|
|
||||||
Lorem ipsum dolor sit amet consectetur adipisicing elit. Nemo vel ad consectetur ut aperiam. Itaque eligendi natus aperiam? Excepturi repellendus consequatur quibusdam optio expedita praesentium est adipisci dolorem ut eius!
|
|
||||||
|
|
||||||
## Creative Design
|
|
||||||
|
|
||||||
Nam ut rutrum ex, venenatis sollicitudin urna. Aliquam erat volutpat. Integer eu ipsum sem. Ut bibendum lacus vestibulum maximus suscipit. Quisque vitae nibh iaculis neque blandit euismod.
|
|
||||||
|
|
||||||
> Lorem ipsum dolor sit amet consectetur adipisicing elit. Nemo vel ad consectetur ut aperiam. Itaque eligendi natus aperiam? Excepturi repellendus consequatur quibusdam optio expedita praesentium est adipisci dolorem ut eius!
|
|
||||||
|
|
||||||
Lorem ipsum dolor sit amet consectetur adipisicing elit. Nemo vel ad consectetur ut aperiam. Itaque eligendi natus aperiam? Excepturi repellendus consequatur quibusdam optio expedita praesentium est adipisci dolorem ut eius!
|
|
||||||
@@ -1,6 +0,0 @@
|
|||||||
---
|
|
||||||
title: "Contact"
|
|
||||||
meta_title: ""
|
|
||||||
description: "this is meta description"
|
|
||||||
draft: false
|
|
||||||
---
|
|
||||||
@@ -1,239 +0,0 @@
|
|||||||
---
|
|
||||||
title: "Elements"
|
|
||||||
# meta title
|
|
||||||
meta_title: ""
|
|
||||||
# meta description
|
|
||||||
description: "This is meta description"
|
|
||||||
# save as draft
|
|
||||||
draft: false
|
|
||||||
---
|
|
||||||
|
|
||||||
{{< toc >}}
|
|
||||||
|
|
||||||
Here is an example of headings. You can use this heading by the following markdown rules. For example: use `#` for heading 1 and use `######` for heading 6.
|
|
||||||
|
|
||||||
# Heading 1
|
|
||||||
|
|
||||||
## Heading 2
|
|
||||||
|
|
||||||
### Heading 3
|
|
||||||
|
|
||||||
#### Heading 4
|
|
||||||
|
|
||||||
##### Heading 5
|
|
||||||
|
|
||||||
###### Heading 6
|
|
||||||
|
|
||||||
<hr>
|
|
||||||
|
|
||||||
### Emphasis
|
|
||||||
|
|
||||||
The emphasis, aka italics, with _asterisks_ or _underscores_.
|
|
||||||
|
|
||||||
Strong emphasis, aka bold, with **asterisks** or **underscores**.
|
|
||||||
|
|
||||||
The combined emphasis with **asterisks and _underscores_**.
|
|
||||||
|
|
||||||
Strike through uses two tildes. ~~Scratch this.~~
|
|
||||||
|
|
||||||
<hr>
|
|
||||||
|
|
||||||
### Button
|
|
||||||
|
|
||||||
{{< button label="Button" link="/" style="solid" >}}
|
|
||||||
|
|
||||||
<hr>
|
|
||||||
|
|
||||||
### Link
|
|
||||||
|
|
||||||
[I'm an inline-style link](https://www.google.com)
|
|
||||||
|
|
||||||
[I'm an inline-style link with title](https://www.google.com "Google's Homepage")
|
|
||||||
|
|
||||||
[I'm a reference-style link][Arbitrary case-insensitive reference text]
|
|
||||||
|
|
||||||
[I'm a relative reference to a repository file](../blob/master/LICENSE)
|
|
||||||
|
|
||||||
[You can use numbers for reference-style link definitions][1]
|
|
||||||
|
|
||||||
Or leave it empty and use the [link text itself].
|
|
||||||
|
|
||||||
URLs and URLs in angle brackets will automatically get turned into links.
|
|
||||||
<http://www.example.com> or <http://www.example.com> and sometimes
|
|
||||||
example.com (but not on Github, for example).
|
|
||||||
|
|
||||||
Some text to show that the reference links can follow later.
|
|
||||||
|
|
||||||
[arbitrary case-insensitive reference text]: https://www.themefisher.com
|
|
||||||
[1]: https://gethugothemes.com
|
|
||||||
[link text itself]: https://www.getjekyllthemes.com
|
|
||||||
|
|
||||||
<hr>
|
|
||||||
|
|
||||||
### Paragraph
|
|
||||||
|
|
||||||
Lorem ipsum dolor sit amet consectetur adipisicing elit. Quam nihil enim maxime corporis cumque totam aliquid nam sint inventore optio modi neque laborum officiis necessitatibus, facilis placeat pariatur! Voluptatem, sed harum pariatur adipisci voluptates voluptatum cumque, porro sint minima similique magni perferendis fuga! Optio vel ipsum excepturi tempore reiciendis id quidem? Vel in, doloribus debitis nesciunt fugit sequi magnam accusantium modi neque quis, vitae velit, pariatur harum autem a! Velit impedit atque maiores animi possimus asperiores natus repellendus excepturi sint architecto eligendi non, omnis nihil. Facilis, doloremque illum. Fugit optio laborum minus debitis natus illo perspiciatis corporis voluptatum rerum laboriosam.
|
|
||||||
|
|
||||||
<hr>
|
|
||||||
|
|
||||||
### Ordered List
|
|
||||||
|
|
||||||
1. List item
|
|
||||||
2. List item
|
|
||||||
3. List item
|
|
||||||
4. List item
|
|
||||||
5. List item
|
|
||||||
|
|
||||||
<hr>
|
|
||||||
|
|
||||||
### Unordered List
|
|
||||||
|
|
||||||
- List item
|
|
||||||
- List item
|
|
||||||
- List item
|
|
||||||
- List item
|
|
||||||
- List item
|
|
||||||
|
|
||||||
<hr>
|
|
||||||
|
|
||||||
### Notice
|
|
||||||
|
|
||||||
{{< notice "note" >}}
|
|
||||||
This is a simple note.
|
|
||||||
{{< /notice >}}
|
|
||||||
|
|
||||||
{{< notice "tip" >}}
|
|
||||||
This is a simple tip.
|
|
||||||
{{< /notice >}}
|
|
||||||
|
|
||||||
{{< notice "info" >}}
|
|
||||||
This is a simple info.
|
|
||||||
{{< /notice >}}
|
|
||||||
|
|
||||||
{{< notice "warning" >}}
|
|
||||||
This is a simple warning.
|
|
||||||
{{< /notice >}}
|
|
||||||
|
|
||||||
<hr>
|
|
||||||
|
|
||||||
### Tab
|
|
||||||
|
|
||||||
{{< tabs >}}
|
|
||||||
{{< tab "Tab 1" >}}
|
|
||||||
|
|
||||||
#### Did you come here for something in particular?
|
|
||||||
|
|
||||||
Did you come here for something in particular or just general Riker-bashing? And blowing into maximum warp speed, you appeared for an instant to be in two places at once. We have a saboteur aboard. We know you’re dealing in stolen ore. But I wanna talk about the assassination attempt on Lieutenant Worf.
|
|
||||||
|
|
||||||
{{< /tab >}}
|
|
||||||
|
|
||||||
{{< tab "Tab 2" >}}
|
|
||||||
|
|
||||||
#### I wanna talk about the assassination attempt
|
|
||||||
|
|
||||||
Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.
|
|
||||||
|
|
||||||
Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.
|
|
||||||
|
|
||||||
{{< /tab >}}
|
|
||||||
|
|
||||||
{{< tab "Tab 3" >}}
|
|
||||||
|
|
||||||
#### We know you’re dealing in stolen ore
|
|
||||||
|
|
||||||
Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.
|
|
||||||
|
|
||||||
Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo
|
|
||||||
|
|
||||||
{{< /tab >}}
|
|
||||||
{{< /tabs >}}
|
|
||||||
|
|
||||||
<hr>
|
|
||||||
|
|
||||||
### Accordions
|
|
||||||
|
|
||||||
{{< accordion "Why should you need to do this?" >}}
|
|
||||||
|
|
||||||
- Lorem ipsum dolor sit amet consectetur adipisicing elit.
|
|
||||||
- Lorem ipsum dolor sit amet consectetur adipisicing elit.
|
|
||||||
- Lorem ipsum dolor sit amet consectetur
|
|
||||||
|
|
||||||
{{< /accordion >}}
|
|
||||||
|
|
||||||
{{< accordion "How can I adjust Horizontal centering" >}}
|
|
||||||
|
|
||||||
- Lorem ipsum dolor sit amet consectetur adipisicing elit.
|
|
||||||
- Lorem ipsum dolor sit amet consectetur adipisicing elit.
|
|
||||||
- Lorem ipsum dolor sit amet consectetur
|
|
||||||
|
|
||||||
{{< /accordion >}}
|
|
||||||
|
|
||||||
{{< accordion "Should you use Negative margin?" >}}
|
|
||||||
|
|
||||||
- Lorem ipsum dolor sit amet consectetur adipisicing elit.
|
|
||||||
- Lorem ipsum dolor sit amet consectetur adipisicing elit.
|
|
||||||
- Lorem ipsum dolor sit amet consectetur
|
|
||||||
|
|
||||||
{{< /accordion >}}
|
|
||||||
|
|
||||||
<hr>
|
|
||||||
|
|
||||||
### Code and Syntax Highlighting
|
|
||||||
|
|
||||||
This is an `Inline code` sample.
|
|
||||||
|
|
||||||
```javascript
|
|
||||||
var s = "JavaScript syntax highlighting";
|
|
||||||
alert(s);
|
|
||||||
```
|
|
||||||
|
|
||||||
```python
|
|
||||||
s = "Python syntax highlighting"
|
|
||||||
print s
|
|
||||||
```
|
|
||||||
|
|
||||||
<hr>
|
|
||||||
|
|
||||||
### Blockquote
|
|
||||||
|
|
||||||
> Did you come here for something in particular or just general Riker-bashing? And blowing into maximum warp speed, you appeared for an instant to be in two places at once.
|
|
||||||
|
|
||||||
<hr>
|
|
||||||
|
|
||||||
### Tables
|
|
||||||
|
|
||||||
| Tables | Are | Cool |
|
|
||||||
| ------------- | :-----------: | ----: |
|
|
||||||
| col 3 is | right-aligned | $1600 |
|
|
||||||
| col 2 is | centered | $12 |
|
|
||||||
| zebra stripes | are neat | $1 |
|
|
||||||
|
|
||||||
<hr>
|
|
||||||
|
|
||||||
### Image
|
|
||||||
|
|
||||||
{{< image src="images/image-placeholder.png" caption="" alt="alter-text" height="" width="" position="center" command="fill" option="q100" class="img-fluid" title="image title" webp="false" >}}
|
|
||||||
|
|
||||||
<hr>
|
|
||||||
|
|
||||||
### Gallery
|
|
||||||
|
|
||||||
{{< gallery dir="images/gallery" class="" height="400" width="400" webp="true" command="Fit" option="" zoomable="true" >}}
|
|
||||||
|
|
||||||
<hr>
|
|
||||||
|
|
||||||
### Slider
|
|
||||||
|
|
||||||
{{< slider dir="images/gallery" class="max-w-[600px] ml-0" height="400" width="400" webp="true" command="Fit" option="" zoomable="true" >}}
|
|
||||||
|
|
||||||
<hr>
|
|
||||||
|
|
||||||
### Youtube video
|
|
||||||
|
|
||||||
{{< youtube ResipmZmpDU >}}
|
|
||||||
|
|
||||||
<hr>
|
|
||||||
|
|
||||||
### Custom video
|
|
||||||
|
|
||||||
{{< video src="https://www.w3schools.com/html/mov_bbb.mp4" width="100%" height="auto" autoplay="false" loop="false" muted="false" controls="true" class="rounded-lg" >}}
|
|
||||||
@@ -1,33 +0,0 @@
|
|||||||
---
|
|
||||||
title: "Privacy"
|
|
||||||
# meta title
|
|
||||||
meta_title: ""
|
|
||||||
# meta description
|
|
||||||
description: "This is meta description"
|
|
||||||
# save as draft
|
|
||||||
draft: false
|
|
||||||
---
|
|
||||||
|
|
||||||
#### Responsibility of Contributors
|
|
||||||
|
|
||||||
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Purus, donec nunc eros, ullamcorper id feugiat quisque aliquam sagittis. Sem turpis sed viverra massa gravida pharetra. Non dui dolor potenti eu dignissim fusce. Ultrices amet, in curabitur a arcu a lectus morbi id. Iaculis erat sagittis in tortor cursus. Molestie urna eu tortor, erat scelerisque eget. Nunc hendrerit sed interdum lacus. Lorem quis viverra sed
|
|
||||||
|
|
||||||
pretium, aliquam sit. Praesent elementum magna amet, tincidunt eros, nibh in leo. Malesuada purus, lacus, at aliquam suspendisse tempus. Quis tempus amet, velit nascetur sollicitudin. At sollicitudin eget amet in. Eu velit nascetur sollicitudin erhdfvssfvrgss eget viverra nec elementum. Lacus, facilisis tristique lectus in.
|
|
||||||
|
|
||||||
#### Gathering of Personal Information
|
|
||||||
|
|
||||||
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Purus, donec nunc eros, ullamcorper id feugiat quisque aliquam sagittis. Sem turpis sed viverra massa gravida pharetra. Non dui dolor potenti eu dignissim fusce. Ultrices amet, in curabitur a arcu a lectus morbi id. Iaculis erat sagittis in tortor cursus. Molestie urna eu tortor, erat scelerisque eget. Nunc hendrerit sed interdum lacus. Lorem quis viverra sed
|
|
||||||
|
|
||||||
#### Protection of Personal- Information
|
|
||||||
|
|
||||||
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Purus, donec nunc eros, ullamcorper id feugiat quisque aliquam sagittis. Sem turpis sed viverra massa gravida pharetra. Non dui dolor potenti eu dignissim fusce. Ultrices amet, in curabitur a arcu a lectus morbi id. Iaculis erat sagittis in tortor cursus.
|
|
||||||
|
|
||||||
Molestie urna eu tortor, erat scelerisque eget. Nunc hendrerit sed interdum lacus. Lorem quis viverra sed
|
|
||||||
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Purus, donec nunc eros, ullamcorper id feugiat
|
|
||||||
|
|
||||||
#### Privacy Policy Changes
|
|
||||||
|
|
||||||
1. Sll the Themefisher items are designed to be with the latest , We check all
|
|
||||||
2. comments that threaten or harm the reputation of any person or organization
|
|
||||||
3. personal information including, but limited to, email addresses, telephone numbers
|
|
||||||
4. Any Update come in The technology Customer will get automatic Notification.
|
|
||||||
@@ -1,3 +0,0 @@
|
|||||||
---
|
|
||||||
title: Get Chill
|
|
||||||
---
|
|
||||||
@@ -1,12 +0,0 @@
|
|||||||
---
|
|
||||||
title: Configure your Chill
|
|
||||||
subtitle:
|
|
||||||
description: An application that adapts to your needs does need some configuration, of course.
|
|
||||||
comments: false
|
|
||||||
---
|
|
||||||
|
|
||||||
Chill is a turnkey software package, flexible and adaptable to a wide range of situations. It is used in a wide range of social assistance sectors, including help for the underprivileged, youth work and open-work environments. Chill is used in both small and large structures, with the number of social workers ranging from a few users to several hundred.
|
|
||||||
|
|
||||||
The software can be configured via an intuitive interface accessible only to administrators. The software configuration allows you to decide which fields are available in the software components: for example, which types of exchanges (telephone interviews, home visits, etc.) will be entered by social workers, or which types of social issues are dealt with by your organization. The configuration also takes care of defining document templates generated automatically on the basis of user files.
|
|
||||||
|
|
||||||
The initial configuration of Chill is carried out by the customer or by a service provider. There are also options for transferring existing data (user lists, addresses, etc.). At all times, administrators retain control over what can be changed in the software.
|
|
||||||
@@ -1,6 +0,0 @@
|
|||||||
---
|
|
||||||
title: Install Chill
|
|
||||||
subtitle:
|
|
||||||
image:
|
|
||||||
comments: false
|
|
||||||
---
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
---
|
|
||||||
title: Using a service provider
|
|
||||||
subtitle:
|
|
||||||
description: Would you like guidance on installing, configuring and using Chill? These service providers are happy to assist you.
|
|
||||||
comments: false
|
|
||||||
---
|
|
||||||
|
|
||||||
|
|
||||||
<h5 class="content-subtitle bord-1">Champs Libres coopérative</h5>
|
|
||||||
|
|
||||||
- Located in Namr, Belgium
|
|
||||||
- https://www.champs-libres.coop/page/social/
|
|
||||||
- references CL: https://www.champs-libres.coop/tags/chill/ ? add us on social media https://www.champs-libres.coop/page/social/
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<h5 class="content-subtitle bord-2">Your business ?</h5>
|
|
||||||
<br>
|
|
||||||
{{< notice "tip" >}}
|
|
||||||
As a developer, would you like to become a Chill software provider?
|
|
||||||
{{< /notice >}}
|
|
||||||
@@ -1,3 +0,0 @@
|
|||||||
---
|
|
||||||
title: Features tour
|
|
||||||
---
|
|
||||||
@@ -1,38 +0,0 @@
|
|||||||
---
|
|
||||||
title: Social support plans
|
|
||||||
subtitle:
|
|
||||||
image:
|
|
||||||
description: One or several support plans can be made to follow-up on initial problem diagnosis, actions taken and progress made.
|
|
||||||
comments: false
|
|
||||||
---
|
|
||||||
|
|
||||||
<h5 class="content-subtitle bord-1">Recording users' different pathways</h5>
|
|
||||||
|
|
||||||
Users are monitored as part of a **support path**.
|
|
||||||
|
|
||||||
Each user may have several paths, depending on the different referents and/or the organization of the service.
|
|
||||||
|
|
||||||
Similarly, a support pathway may concern several users: it may involve a single user, an entire family or a group of people.
|
|
||||||
|
|
||||||
<h5 class="content-subtitle bord-2">Characterizing pathways</h5>
|
|
||||||
|
|
||||||
Pathways are associated with **social issues**: they indicate "what is addressed" in the pathway.
|
|
||||||
|
|
||||||
The pathway can also be located in space: at a user's home or an arbitrary address, and/or at a service.
|
|
||||||
|
|
||||||
It is also possible to enter a requester, the origin, the opening date of the course, etc.
|
|
||||||
|
|
||||||
<h5 class="content-subtitle bord-3">Record exchanges</h5>
|
|
||||||
|
|
||||||
Each exchange with the user can be indicated in the path, so that it is possible to know the history and content of these different moments.
|
|
||||||
|
|
||||||
Users can record different types of exchange: appointments at home, interviews in the salon, a simple call, or meetings. These types of exchange are configured by administrators, who can also activate or deactivate the form fields required for each type.
|
|
||||||
|
|
||||||
<h5 class="content-subtitle bord-4">List actions implemented</h5>
|
|
||||||
|
|
||||||
The various exchanges enable you to build support actions: work on a CV, apply for social assistance, set up a follow-up, and so on.
|
|
||||||
|
|
||||||
For each action, it is possible to associate or generate documents: results of CV work, social mandate documents, etc. It is even possible to generate pre-filled assistance application forms!
|
|
||||||
|
|
||||||
The objectives and results of each action can also be entered.
|
|
||||||
|
|
||||||
@@ -1,16 +0,0 @@
|
|||||||
---
|
|
||||||
title: Generation of documents
|
|
||||||
description: Documents can be generated from within the application with a wide array of data already pre-filled, offering users a precious gain in time.
|
|
||||||
image: "/images/document_time_gain.jpg"
|
|
||||||
comments: false
|
|
||||||
---
|
|
||||||
|
|
||||||
Social support at times also requires filling in forms and compiling documents, a time-consuming task.
|
|
||||||
Chill makes this task a lot less tedious by pre-filling fields with the information already registered in the application.
|
|
||||||
|
|
||||||
To do so, the application makes use of templates that can be configured specifically for your organisation.
|
|
||||||
Templates can go from a simple attendance certificate to complex application forms and the information that will be pre-filled can go from
|
|
||||||
a person's name to more complex household budget data.
|
|
||||||
|
|
||||||
A one-time configuration of templates is needed, but guidance can be provided by one of Chill's service providers to assist your
|
|
||||||
organisation in doing so.
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
---
|
|
||||||
title: Generation of statistics
|
|
||||||
subtitle: Social support in numbers
|
|
||||||
description: Extract numbers to back up your work and provide accountability where needed.
|
|
||||||
comments: false
|
|
||||||
---
|
|
||||||
|
|
||||||
<h5 class="content-subtitle bord-1">Social support in numbers</h5>
|
|
||||||
|
|
||||||
Numbers are certainly not the core business of the social professional, but often they are required by government instances for subsidies and the like.
|
|
||||||
Using Chill for the export of statistics means this task will become a lot lighter.
|
|
||||||
|
|
||||||
The application offers the extraction of statistics on all of its entities, whether it be person files, social assistance activities, household files,
|
|
||||||
appointments, social actions,...
|
|
||||||
A wide array of parameters allows you to filter out or group data in the way you need them for your reports.
|
|
||||||
|
|
||||||
An extra commodity offered by this module is the export of lists of persons or social assistance trajectories,
|
|
||||||
giving you an overview or directory of all persons followed and social support provided by you or your organisation.
|
|
||||||
@@ -1,46 +0,0 @@
|
|||||||
---
|
|
||||||
title: Individual case files
|
|
||||||
subtitle: Person files
|
|
||||||
image:
|
|
||||||
description: Chill allows you to save a large and diverse amount of informations for a thorough follow-up of individual case files.
|
|
||||||
comments: false
|
|
||||||
---
|
|
||||||
|
|
||||||
<div>
|
|
||||||
|
|
||||||
<h5 class="content-subtitle bord-1">General personal information</h5>
|
|
||||||
|
|
||||||
Each user has **his or her own file**. It contains "basic" information: first and last name, date of birth, contact data, etc. It is possible to enter several **phone numbers**, as well as free contact data.
|
|
||||||
It is possible to enter several **phone numbers**, as well as free contact data.
|
|
||||||
|
|
||||||
<h5 class="content-subtitle bord-2">Associate user with a household</h4>
|
|
||||||
|
|
||||||
Chill lets you associate each user with a household.
|
|
||||||
A **history** of household memberships is recorded, so that former household members can be traced.
|
|
||||||
Does a household have alternating custody of children? Occasional members? This information can also be entered.
|
|
||||||
|
|
||||||
<h5 class="content-subtitle bord-3">Budgets</h5>
|
|
||||||
|
|
||||||
Chill lets you enter user and household budget data: monthly income and expenses.
|
|
||||||
Expense types" and "Income types" can be **configured by an administrator**: salary income, rent expenses, electricity, etc.
|
|
||||||
Every line in this budget is historicized, so that old data can be preserved.
|
|
||||||
|
|
||||||
<h5 class="content-subtitle bord-4">Upload and generate documents</h5>
|
|
||||||
|
|
||||||
For each file, you can **upload various documents**: scanned identity documents, proof of address, incoming mail, etc.
|
|
||||||
You can also generate documents from each file.
|
|
||||||
It is also possible to generate documents from each file. This makes it possible to generate **format letters** from data already stored in the software.
|
|
||||||
|
|
||||||
<h5 class="content-subtitle bord-1">Indicate "resource" persons or third parties</h5>
|
|
||||||
|
|
||||||
Chill lets you register people or third parties as "resources": doctors, neighbors, translators, close relatives, etc.
|
|
||||||
|
|
||||||
These "resources" can be described as free text, or come from a jointly maintained database of third parties. It is also possible to enter other users as "resources".
|
|
||||||
|
|
||||||
<h5 class="content-subtitle bord-2">Enter tasks</h5>
|
|
||||||
|
|
||||||
Social workers can record **tasks to be carried out** in the user file: contact a lawyer, call the person back the day after the next operation, etc. These tasks can be given a date and a time.
|
|
||||||
|
|
||||||
These tasks may have a due date. They are then recalled on the user's home page.
|
|
||||||
|
|
||||||
</div>
|
|
||||||
@@ -1,37 +0,0 @@
|
|||||||
---
|
|
||||||
title: Roadmap
|
|
||||||
subtitle:
|
|
||||||
description: Here is what Chill still has in store for you and how you or your organisation can be a part of it.
|
|
||||||
comments: false
|
|
||||||
---
|
|
||||||
|
|
||||||
<h5 class="content-subtitle bord-1">Features under development and those to come</h5>
|
|
||||||
|
|
||||||
The development team has published the various features currently under development. The list is available [here](https://gitlab.com/Chill-Projet/chill-bundles/-/boards/7086313?label_name[]=kind%3A%3Afeature).
|
|
||||||
|
|
||||||
Some features are at the "idea" stage, with no details or funding (see the "idea" column in the link provided).
|
|
||||||
|
|
||||||
Other features have been more fully thought through, but are awaiting funding or confirmation of funding. These are described in the "nearly-ready" column of the roadmap.
|
|
||||||
|
|
||||||
Finally, some features are currently being developed and will soon be available: they are listed in the "on-the-go" column.
|
|
||||||
|
|
||||||
Once ready, you'll find these features in the notes that accompany [each new version](https://gitlab.com/Chill-Projet/chill-bundles/-/releases).
|
|
||||||
|
|
||||||
<h5 class="content-subtitle bord-2">Adding or financing new features?</h5>
|
|
||||||
|
|
||||||
Chill has been funded by commissioning previous developments: other institutions have paid developers to add features. You have them today!
|
|
||||||
|
|
||||||
Champs-Libres, which also supports software development, uses part of its hosting sales for maintenance and development.
|
|
||||||
|
|
||||||
To contribute to the software's sustainability and development, you can:
|
|
||||||
|
|
||||||
- order a hosting package from the service providers who maintain the software;
|
|
||||||
- finance a feature that meets your needs;
|
|
||||||
- or finance an idea for a new feature that is still awaiting a sponsor.
|
|
||||||
|
|
||||||
Is a feature too expensive for you? Don't hesitate to contact us: your needs probably correspond to those of other institutions. It's possible to share large-scale developments with these other services: small streams make big rivers!
|
|
||||||
|
|
||||||
|
|
||||||
<h5 class="content-subtitle bord-3">Latest features developed</h5>
|
|
||||||
|
|
||||||
New features are described [in the notes of each new version](https://gitlab.com/Chill-Projet/chill-bundles/-/releases).
|
|
||||||
@@ -1,17 +0,0 @@
|
|||||||
|
|
||||||
---
|
|
||||||
title: Follow-up of decisions
|
|
||||||
subtitle:
|
|
||||||
description: Workflows allow you to phase more complex tasks without losing sight of who is in charge and what decision needs to be made
|
|
||||||
comments: false
|
|
||||||
---
|
|
||||||
|
|
||||||
## A streamlined workflow
|
|
||||||
|
|
||||||
**For large teams**, Chill enables decisions to be tracked and validated within a hierarchy.
|
|
||||||
|
|
||||||
It is possible to configure decision tracking paths: have a decision validated by a line manager, obtain the visa of a competent department, ensure that the document is sent by the competent departments, etc.
|
|
||||||
|
|
||||||
The path can be constrained to adapt to existing validation paths.
|
|
||||||
|
|
||||||
By default, Chill has a general workflow, which is already suitable for many scenarios.
|
|
||||||
@@ -1,14 +0,0 @@
|
|||||||
---
|
|
||||||
enable: true
|
|
||||||
title: "Ready to build your next project with Hugo?"
|
|
||||||
image: "/images/call-to-action.png"
|
|
||||||
description: "Experience the future of web development with Hugoplate and Hugo. Build lightning-fast static sites with ease and flexibility."
|
|
||||||
button:
|
|
||||||
enable: true
|
|
||||||
label: "Get Started Now"
|
|
||||||
link: "https://github.com/zeon-studio/hugoplate"
|
|
||||||
|
|
||||||
# don't create a separate page
|
|
||||||
_build:
|
|
||||||
render: "never"
|
|
||||||
---
|
|
||||||
@@ -1,31 +0,0 @@
|
|||||||
---
|
|
||||||
enable: false
|
|
||||||
title: "What Users Are Saying About Hugoplate"
|
|
||||||
description: "Don't just take our word for it - hear from some of our satisfied users! Check out some of our testimonials below to see what others are saying about Hugoplate."
|
|
||||||
|
|
||||||
# Testimonials
|
|
||||||
testimonials:
|
|
||||||
- name: "Marvin McKinney"
|
|
||||||
designation: "Web Designer"
|
|
||||||
avatar: "/images/avatar-sm.png"
|
|
||||||
content: "Lorem ipsum dolor sit amet consectetur adipisicing elit. Qui iusto illo molestias, assumenda expedita commodi inventore non itaque molestiae voluptatum dolore, facilis sapiente, repellat veniam."
|
|
||||||
|
|
||||||
- name: "Marvin McKinney"
|
|
||||||
designation: "Web Designer"
|
|
||||||
avatar: "/images/avatar-sm.png"
|
|
||||||
content: "Lorem ipsum dolor sit amet consectetur adipisicing elit. Qui iusto illo molestias, assumenda expedita commodi inventore non itaque molestiae voluptatum dolore, facilis sapiente, repellat veniam."
|
|
||||||
|
|
||||||
- name: "Marvin McKinney"
|
|
||||||
designation: "Web Designer"
|
|
||||||
avatar: "/images/avatar-sm.png"
|
|
||||||
content: "Lorem ipsum dolor sit amet consectetur adipisicing elit. Qui iusto illo molestias, assumenda expedita commodi inventore non itaque molestiae voluptatum dolore, facilis sapiente, repellat veniam."
|
|
||||||
|
|
||||||
- name: "Marvin McKinney"
|
|
||||||
designation: "Web Designer"
|
|
||||||
avatar: "/images/avatar-sm.png"
|
|
||||||
content: "Lorem ipsum dolor sit amet consectetur adipisicing elit. Qui iusto illo molestias, assumenda expedita commodi inventore non itaque molestiae voluptatum dolore, facilis sapiente, repellat veniam."
|
|
||||||
|
|
||||||
# don't create a separate page
|
|
||||||
_build:
|
|
||||||
render: "never"
|
|
||||||
---
|
|
||||||
@@ -1,3 +0,0 @@
|
|||||||
---
|
|
||||||
title: Getting started
|
|
||||||
---
|
|
||||||
@@ -1,46 +0,0 @@
|
|||||||
---
|
|
||||||
title: Developers
|
|
||||||
subtitle:
|
|
||||||
description: A call to fellow developers with a heart for open-source
|
|
||||||
comments: false
|
|
||||||
---
|
|
||||||
|
|
||||||
|
|
||||||
<h5 class="content-subtitle bord-1">Source code Chill</h5>
|
|
||||||
|
|
||||||
Chill's source code can be found in two separate repositories.
|
|
||||||
|
|
||||||
The first repository, called `chill-skeleton-basic`, is used for the [installation](). It contains all the dependencies needed for installation. In this repository, you can also customize Chill.
|
|
||||||
|
|
||||||
https://gitea.champs-libres.be/Chill-project/chill-skeleton-basic
|
|
||||||
|
|
||||||
(Warning, [the repository on gitlab](https://gitlab.com/Chill-Projet/chill-skeleton-basic) is readonly since April 2023)
|
|
||||||
|
|
||||||
|
|
||||||
The second repository, called `chill-bundles` is actually the main repository of Chill. It is a collection of the most commonly used bundles, which can be activated/deactivated as needed.
|
|
||||||
|
|
||||||
https://gitlab.com/Chill-Projet/chill-bundles
|
|
||||||
|
|
||||||
This is a dependency that `composer` itself will install, which is why this package is included in the PHP package ecosystem: https://packagist.org/packages/chill-project/chill-bundles
|
|
||||||
|
|
||||||
|
|
||||||
<h5 class="content-subtitle bord-2">Issues</h5>
|
|
||||||
|
|
||||||
Tickets related to the Chill code can therefore be found in this chill bundles repository, see https://gitlab.com/Chill-Projet/chill-bundles/-/issues
|
|
||||||
|
|
||||||
|
|
||||||
<h5 class="content-subtitle bord-3">Technical documentation</h5>
|
|
||||||
|
|
||||||
Chill technical documentation can be found at the following address: http://docs.chill.social/en/latest/
|
|
||||||
|
|
||||||
|
|
||||||
<h5 class="content-subtitle bord-4">Exchanging with developers</h5>
|
|
||||||
|
|
||||||
There is a chat room on the messaging system Matrix, where you can talk to Chill developers.
|
|
||||||
|
|
||||||
`#chill-social-admin:matrix.org`.
|
|
||||||
|
|
||||||
|
|
||||||
<h5 class="content-subtitle bord-1">Contribute, become a service supplier</h5>
|
|
||||||
|
|
||||||
If you would like to contribute to Chill's code and perhaps become a supplier of the software, please take a look at the [Contribute] page (https://gitlab.com/Chill-Projet/chill-bundles/-/blob/master/CONTRIBUTING.md).
|
|
||||||
@@ -1,8 +0,0 @@
|
|||||||
---
|
|
||||||
title: en Brochure
|
|
||||||
subtitle:
|
|
||||||
image:
|
|
||||||
comments: false
|
|
||||||
---
|
|
||||||
|
|
||||||
|
|
||||||
@@ -1,25 +0,0 @@
|
|||||||
---
|
|
||||||
title: Users
|
|
||||||
subtitle:
|
|
||||||
description: Help is never far off!
|
|
||||||
comments: false
|
|
||||||
---
|
|
||||||
|
|
||||||
|
|
||||||
<h5 class="content-subtitle bord-1">User manuals</h5>
|
|
||||||
|
|
||||||
There is a user manual for users and another for administrators.
|
|
||||||
|
|
||||||
The user is the social worker who uses Chill on a daily basis.
|
|
||||||
|
|
||||||
The administrator is a specific role, who can access an application administration interface, enabling him/her to adjust Chill's configuration.
|
|
||||||
|
|
||||||
These manuals are available in PDF format at the following address:
|
|
||||||
|
|
||||||
https://gitea.champs-libres.be/Chill-project/manuals/releases
|
|
||||||
|
|
||||||
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.
|
|
||||||
@@ -0,0 +1,5 @@
|
|||||||
|
---
|
||||||
|
title: "Fonctionnalités"
|
||||||
|
description: "Découvrez toutes les fonctionnalités de CHILL"
|
||||||
|
layout: "list"
|
||||||
|
---
|
||||||
@@ -0,0 +1,25 @@
|
|||||||
|
---
|
||||||
|
title: "Génération de documents"
|
||||||
|
description: "Concevez rapidement vos documents à partir de modèles"
|
||||||
|
weight: 3
|
||||||
|
layout: "single"
|
||||||
|
badge: "Documents"
|
||||||
|
badgeColor: "generation-document"
|
||||||
|
demo:
|
||||||
|
images:
|
||||||
|
- "/images/features/HP-documents.png"
|
||||||
|
- "/images/features/documents1.png"
|
||||||
|
- "/images/features/fonc-doc3.png"
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Présentation
|
||||||
|
|
||||||
|
Exploitez les informations clés de l’usager, du ménage, du parcours et du budget pour créer des documents types. Chaque document peut ensuite suivre un workflow et être associé à un suivi de décisions, pour un accompagnement efficace et transparent.
|
||||||
|
|
||||||
|
## Fonctionnalités principales
|
||||||
|
La liste des variables pouvant être extraites de l'outil est étendue, mais les plus fréquemment utilisées sont :
|
||||||
|
- **Informations relatives à l'usager**: coordonnées socio professionnelles
|
||||||
|
- **Informations relatives au ménage**: adresse, liens de filiation, composition familiale
|
||||||
|
- **Informations relatives au parcours d'accompagnement**: référent du parcours, localisation, liste des échanges et des actions d'accompagnement
|
||||||
|
- **Informations relatives au budget**: liste des charges et ressources
|
||||||
@@ -0,0 +1,24 @@
|
|||||||
|
---
|
||||||
|
title: "Droits d’accès"
|
||||||
|
description: "Protégez vos accès et vos données."
|
||||||
|
weight: 7
|
||||||
|
layout: "single"
|
||||||
|
badge: "Droits d’accès"
|
||||||
|
badgeColor: "rapport-rgpd"
|
||||||
|
demo:
|
||||||
|
images:
|
||||||
|
- "/images/features/HP-droitsdacces.png"
|
||||||
|
- "/images/features/permissions.png"
|
||||||
|
- "/images/features/permissions2.png"
|
||||||
|
- "/images/features/permissions3.png"
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Présentation
|
||||||
|
|
||||||
|
Gérez les droits d'accès aux dossiers des usagers par service et territoire, voir rendez totalement confidentiels certains dossiers grâce aux groupes de permissions. Retracez également facilement les accès et les modifications aux données par chaque utilisateur.
|
||||||
|
|
||||||
|
## Fonctionnalités principales
|
||||||
|
- **Gestion des droits d’accès** : configurez des droits spécifiques selon le rôle, le service ou le territoire.
|
||||||
|
- **Traçabilité des consultations** : consultez et téléchargez l’historique des accès aux dossiers.
|
||||||
|
- **Commentaires privés** : sécurisez certaines informations grâce aux notes privées.
|
||||||
@@ -0,0 +1,30 @@
|
|||||||
|
---
|
||||||
|
title: "Rapports statistiques"
|
||||||
|
description: "Exportez des statistiques sur vos activités."
|
||||||
|
weight: 6
|
||||||
|
layout: "single"
|
||||||
|
badge: "Statistiques"
|
||||||
|
badgeColor: "rapports-statistiques"
|
||||||
|
demo:
|
||||||
|
images:
|
||||||
|
- "/images/features/HP-exports.png"
|
||||||
|
- "/images/features/stats.png"
|
||||||
|
- "/images/features/stats3.png"
|
||||||
|
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Présentation
|
||||||
|
|
||||||
|
Chill facilite la génération et l’analyse de statistiques croisées, offrant une vision précise du travail d’accompagnement social et des bénéficiaires. Chill permet d’exporter un large volume de données sous diverses formes et en appliquant divers filtres ou regroupements.
|
||||||
|
|
||||||
|
## Fonctionnalités principales
|
||||||
|
|
||||||
|
- **Données de l’usager** : Analysez les informations individuelles.
|
||||||
|
- **Données des ménages** : Suivez les statistiques liées aux ménages.
|
||||||
|
- **Actions d’accompagnement** : Mesurez l’impact des actions menées.
|
||||||
|
- **Problématiques sociales** : Identifiez les problématiques rencontrées.
|
||||||
|
- **Rendez-vous** : Suivez la planification et la réalisation des rendez-vous.
|
||||||
|
- **Évaluations** : Générez une liste complète des évaluations et indiquez leur nombre total, etc.
|
||||||
|
- **Échanges** : Identifiez leur nombre, leur type, leur durée, et d’autres caractéristiques pertinentes.
|
||||||
|
- **Activités annexes** : Comptez le nombre d’activités annexes, le nombre d'usagers concernés, etc.
|
||||||
@@ -0,0 +1,28 @@
|
|||||||
|
---
|
||||||
|
title: "Rendez-vous"
|
||||||
|
description: "Fixez des rendez-vous à vos usagers et invitez vos collègues."
|
||||||
|
weight: 4
|
||||||
|
layout: "single"
|
||||||
|
badge: "Rendez-vous"
|
||||||
|
badgeColor: "rendez-vous"
|
||||||
|
demo:
|
||||||
|
images:
|
||||||
|
- "/images/features/HP-rendez-vous.png"
|
||||||
|
- "/images/features/rdv2.png"
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
## Présentation
|
||||||
|
|
||||||
|
Planifiez, organisez et suivez efficacement vos rendez-vous, que ce soit pour vous-même ou pour vos collègues.
|
||||||
|
|
||||||
|
## Fonctionnalités principales
|
||||||
|
|
||||||
|
- **Ajout de plages de disponibilité** : Créez facilement vos plages de disponibilité pour que vos collègues puissent vous proposer des rendez-vous adaptés à votre emploi du temps.
|
||||||
|
- **Planification de rendez-vous entre collègues** : Organisez des rendez-vous et invitez d’autres utilisateurs directement depuis l’outil, pour une coordination simple et rapide.
|
||||||
|
- **Synchronisation avec les agendas électroniques** : Connectez vos agendas Outlook, Zimbra, Google Agenda ou autres solutions populaires pour un suivi centralisé et à jour de vos rendez-vous.
|
||||||
|
- **Envoi de rappels par SMS** : Prévenez vos usagers avant les rendez-vous grâce à des notifications par SMS, pour réduire les absences et améliorer la ponctualité.
|
||||||
|
- **Transformation du rendez-vous en échange** : Convertissez un rendez-vous en échange si nécessaire, afin de garder un suivi précis et complet du parcours des usagers.
|
||||||
|
|
||||||
@@ -0,0 +1,29 @@
|
|||||||
|
---
|
||||||
|
title: "Suivi des accompagnements"
|
||||||
|
description: "Consignez les parcours d’accompagnement de vos usagers."
|
||||||
|
weight: 2
|
||||||
|
layout: "single"
|
||||||
|
badge: "Accompagnements"
|
||||||
|
badgeColor: "suivi-accompagnements"
|
||||||
|
demo:
|
||||||
|
images:
|
||||||
|
- "/images/features/HP-accompagnement.png"
|
||||||
|
- "/images/features/fonc-accom-2.png"
|
||||||
|
- "/images/features/fonc-accom-3.png"
|
||||||
|
---
|
||||||
|
|
||||||
|
## Présentation
|
||||||
|
|
||||||
|
Créez et suivez un ou plusieurs parcours d’accompagnement pour chaque usager, du diagnostic initial aux actions entreprises et aux progrès réalisés. Cette fonctionnalité permet une gestion fine et personnalisée de l’accompagnement social.
|
||||||
|
|
||||||
|
## Fonctionnalités principales
|
||||||
|
|
||||||
|
- **Création de parcours** : Ajoutez et suivez les différents parcours d'accompagnement.
|
||||||
|
- **Caractérisation des parcours avec des problématiques sociales** : Définissez les caractéristiques et enjeux sociaux propres à chaque accompagnement.
|
||||||
|
- **Mise en place de rendez-vous avec envoi de SMS de rappel** : Planifiez les rendez-vous et automatisez les rappels par SMS.
|
||||||
|
- **Enregistrement d'échanges** : Gardez une trace des échanges et interactions avec l'usager.
|
||||||
|
- **Traduction des conseils et orientations données en actions** : Convertissez les orientations en actions concrètes et suivables.
|
||||||
|
- **Partage de l'information entre collègues via des notifications** : Facilitez la collaboration et la communication au sein de l'équipe.
|
||||||
|
- **Commentaires**: Enregistrez des commentaires relatifs aux parcours des usagers et épinglez-les pour leur donner plus de visibilité.
|
||||||
|
- **Génération de documents**: Téléversez et organisez tous les documents nécessaires au parcours d’accompagnement. Générez également des documents types automatiquement en utilisant les informations déjà saisies dans l’outil.
|
||||||
|
- **Tâches**: Planifiez et suivez facilement toutes les tâches d’accompagnement : assignez-les, définissez des échéances et recevez des alertes pour ne jamais rien oublier.
|
||||||
@@ -0,0 +1,25 @@
|
|||||||
|
---
|
||||||
|
title: "Suivi des décisions"
|
||||||
|
description: "Validez les décisions grâce à des worklows prédéfinis."
|
||||||
|
weight: 5
|
||||||
|
layout: "single"
|
||||||
|
badge: "Décisions"
|
||||||
|
badgeColor: "suivi-decisions"
|
||||||
|
demo:
|
||||||
|
images:
|
||||||
|
- "/images/features/suividecisions2.png"
|
||||||
|
- "/images/features/HP-décisions.png"
|
||||||
|
- "/images/features/suividedecisions.png"
|
||||||
|
---
|
||||||
|
|
||||||
|
## Présentation
|
||||||
|
|
||||||
|
Chill facilite le suivi et la validation de décisions au sein d'une équipe, en s'appuyant sur des processus adaptés à vos besoins organisationnels. Le processus de suivi est organisé en plusieurs étapes. Entre chaque étape, les utilisateurs peuvent appliquer des décisions. La définition des étapes et des décisions possibles pour chacune d’elles est configurable pour chaque installation.
|
||||||
|
|
||||||
|
Le suivi des décisions permet de suivre l’évolution des actions d’accompagnement, l'évolution de documents dans les parcours ou dans les évaluations des actions d’accompagnement des parcours.
|
||||||
|
## Fonctionnalités principales
|
||||||
|
- **Structuration des décisions et des actions** : Organisez et classifiez vos décisions de manière claire et cohérente.
|
||||||
|
- **Personnalisation des étapes du workflow** : Adaptez les étapes de validation selon vos processus spécifiques.
|
||||||
|
- **Définition des rôles et responsabilités de chacun** : Attribuez des responsabilités claires à chaque participant.
|
||||||
|
- **Notifications automatiques liées aux décisions** : Recevez des alertes en temps réel sur l'évolution des décisions.
|
||||||
|
- **Suivi global de l'avancement** : Visualisez l'état d'avancement de toutes vos décisions en un coup d'œil.
|
||||||
@@ -0,0 +1,47 @@
|
|||||||
|
---
|
||||||
|
title: "Suivi des usagers"
|
||||||
|
description: "Centralisez les informations clés de vos usagers."
|
||||||
|
weight: 1
|
||||||
|
layout: "single"
|
||||||
|
badge: "Usagers"
|
||||||
|
badgeColor: "suivi-usagers"
|
||||||
|
demo:
|
||||||
|
images:
|
||||||
|
- "/images/features/fonctionnalites-usager.png"
|
||||||
|
- "/images/features/fonctionnalites-usager2.png"
|
||||||
|
- "/images/features/fonctionnalites-usager3.png"
|
||||||
|
- "/images/features/fonctionnalités-usager4.png"
|
||||||
|
- "/images/features/fonctionnalités-usager5.png"
|
||||||
|
- "/images/features/fonctionnalites-usager6.png"
|
||||||
|
- "/images/features/fonctionnalites-usager7.png"
|
||||||
|
---
|
||||||
|
|
||||||
|
|
||||||
|
## Présentation
|
||||||
|
|
||||||
|
|
||||||
|
CHILL vous offre une gestion complète et structurée des dossiers individuels, facilitant le suivi personnalisé de chaque usager.
|
||||||
|
|
||||||
|
|
||||||
|
## Fonctionnalités principales
|
||||||
|
|
||||||
|
* **Fiche individuelle détaillée**
|
||||||
|
Pour chaque usager, une fiche centralise toutes les informations essentielles : nom, prénom, date de naissance et autres données de contact personnalisées.
|
||||||
|
|
||||||
|
* **Gestion des ménages**
|
||||||
|
Associez chaque usager à un ménage, avec un historique complet des membres. Gérez les situations complexes telles que les gardes alternées ou les membres occasionnels.
|
||||||
|
|
||||||
|
* **Suivi budgétaire**
|
||||||
|
Enregistrez les revenus et charges mensuels de l’usager et de son ménage. Personnalisez les catégories de dépenses et de revenus selon les besoins.
|
||||||
|
|
||||||
|
* **Personnes ressources**
|
||||||
|
Identifiez et enregistrez les personnes tiers ou structures ressources : médecins, traducteurs, proches, voisins ou autres usagers.
|
||||||
|
|
||||||
|
* **Génération de documents**
|
||||||
|
Téléversez et organisez divers documents : pièces d’identité, justificatifs de domicile, courriers reçus, etc. Générez également des documents types directement à partir des données de la fiche, facilitant ainsi la rédaction de courriers ou de rapports.
|
||||||
|
|
||||||
|
* **Enregistrement de tâches**
|
||||||
|
Enregistrez des tâches à réaliser pour chaque usager, tels que des rappels de rendez-vous ou des suivis spécifiques. Ces tâches sont visibles sur votre page d’accueil et peuvent être associées à des dates d’échéance pour une gestion proactive.
|
||||||
|
|
||||||
|
* **Participation aux événements**
|
||||||
|
Participation aux événements: suivez en un coup d’œil toutes les participations d’un usager et inscrivez-le rapidement aux prochains événements, pour un suivi simple et efficace.
|
||||||
@@ -1,102 +0,0 @@
|
|||||||
---
|
|
||||||
banner:
|
|
||||||
|
|
||||||
class: dark
|
|
||||||
image: /images/illustrations/hero-image.png
|
|
||||||
title: Le compagnon du travailleur social
|
|
||||||
content: >
|
|
||||||
Une application web open source dédiée à faciliter le travail social.
|
|
||||||
bulletpoints:
|
|
||||||
button:
|
|
||||||
enable: true
|
|
||||||
label: Essayer la démo
|
|
||||||
link: http://demo.chill.social
|
|
||||||
|
|
||||||
features:
|
|
||||||
|
|
||||||
- #1
|
|
||||||
class: section-md li-block
|
|
||||||
image: /images/svg/curve-10.svg ##
|
|
||||||
title:
|
|
||||||
content:
|
|
||||||
bulletpoints:
|
|
||||||
- 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
|
|
||||||
button:
|
|
||||||
enable: false
|
|
||||||
label: Button label
|
|
||||||
link: #
|
|
||||||
|
|
||||||
- #2
|
|
||||||
class: section-sm big-text
|
|
||||||
image: /images/svg/curve-20.svg ##
|
|
||||||
title: <span class="highlight highlight-1">CHILL,</span> est là pour vous offrir une administration plus <span class="highlight highlight-2">facile</span> et une <span class="highlight highlight-3">vue d'ensemble</span> de votre travail à tout moment.
|
|
||||||
content: >
|
|
||||||
# CHILL nourrit les travailleurs sociaux des informations dont ils ont besoin au quotidien, tout en leur offrant une vision d’ensemble sur la situation de vie, les dossiers et les parcours sociaux des personnes accompagnées.
|
|
||||||
bulletpoints:
|
|
||||||
button:
|
|
||||||
enable: false
|
|
||||||
label: Button label
|
|
||||||
link: #
|
|
||||||
|
|
||||||
- #3
|
|
||||||
class:
|
|
||||||
image: /images/illustrations/collection-1.png
|
|
||||||
title: Efficace, efficient et intuitif
|
|
||||||
content: "Parmi ses fonctionnalités les plus appréciées, il vous permet en quelques clics :"
|
|
||||||
bulletpoints:
|
|
||||||
- de **retrouver** toutes les informations sur les personnes accompagnées ;
|
|
||||||
- "de **générer** automatiquement une grande variété de documents et formulaires : attestation de rendez-vous, imprimés uniques, etc ;"
|
|
||||||
- de **fixer** des rendez-vous aux personnes accompagnées avec des rappels par sms, et de synchroniser les agendas en ligne ;
|
|
||||||
- d’**effectuer** un suivi des décisions sur des documents et formulaires relevant de la décision de plusieurs membres du personnel ;
|
|
||||||
- de **joindre** des pièces et documents à n’importe quel dossier par simple glisser-déposer depuis sa boîte mail, son ordinateur, etc ;
|
|
||||||
- de **gérer** les droits d’accès aux dossiers d’usagers par service et localisation, voire de rendre complètement confidentielles certains dossiers.
|
|
||||||
button:
|
|
||||||
enable: false
|
|
||||||
label: Button label
|
|
||||||
link: #
|
|
||||||
|
|
||||||
- #4
|
|
||||||
class: big-text
|
|
||||||
image: /images/bg/pattern-10.png ##
|
|
||||||
title:
|
|
||||||
content: <h4>Via les divers supports et manuels pédagogiques mis à disposition, CHILL permet l’autonomie des utilisateurs et des administrateurs, que ce soit pour l'utiliser ou pour le configurer.</h4>
|
|
||||||
bulletpoints:
|
|
||||||
button:
|
|
||||||
enable: true
|
|
||||||
label: Support et manuels
|
|
||||||
link: start/user
|
|
||||||
|
|
||||||
- #5
|
|
||||||
class: li-block
|
|
||||||
image: /images/svg/curve-30.svg ##
|
|
||||||
title: Mais aussi...
|
|
||||||
content: CHILL est un logiciel professionnel conçu selon les standards de développement actuels.
|
|
||||||
bulletpoints:
|
|
||||||
- <h5 class='mb-4'>Responsive et accessible</h5> Chill répond aux enjeux de mobilité des travailleurs.
|
|
||||||
- <h5 class='mb-4'>Solution clé en main</h5> Nombreuses possibilités de paramétrage pour répondre à vos besoins.
|
|
||||||
- <h5 class='mb-4'>Respecte les principes du RGPD</h5> La possibilité de paramétrer différents rôles et règles d’accès pour assurer la sécurité des données.
|
|
||||||
- <h5 class='mb-4'>Chill = libre</h5> Son code source reste ouvert et dans un processus d’amélioration continue.
|
|
||||||
button:
|
|
||||||
enable: false
|
|
||||||
label: Button label
|
|
||||||
link: #
|
|
||||||
|
|
||||||
- #6
|
|
||||||
class: dark
|
|
||||||
image: /images/illustrations/collection-2.png
|
|
||||||
title:
|
|
||||||
content: >
|
|
||||||
Flexible et adaptable à de nombreuses réalités, CHILL s'adapte à une diversité de grosses comme de petites structures.
|
|
||||||
<br><br>
|
|
||||||
CHILL a été développé dans le cadre d'un processus participatif avec les travailleurs sociaux de différents secteurs, afin que le logiciel réponde à leur besoin et à une diversité de réalités de terrain.
|
|
||||||
<br><br>
|
|
||||||
bulletpoints:
|
|
||||||
button:
|
|
||||||
enable: false
|
|
||||||
label: Button label
|
|
||||||
link: #
|
|
||||||
|
|
||||||
---
|
|
||||||
@@ -1,3 +0,0 @@
|
|||||||
---
|
|
||||||
title: Obtenir Chill
|
|
||||||
---
|
|
||||||
@@ -1,13 +0,0 @@
|
|||||||
---
|
|
||||||
title: Accompagnement à la configuration
|
|
||||||
subtitle:
|
|
||||||
image:
|
|
||||||
comments: false
|
|
||||||
---
|
|
||||||
|
|
||||||
|
|
||||||
Chill est un logiciel clé en main, flexible et adaptable à de nombreuses réalités. Il est utilisé dans divers secteurs de l'aide sociale: aide aux personnes précarisées, aide à la jeunesse, aide en milieu ouvert, etc. Chill est utilisé autant dans des petites que dans des grandes structures, avec un nombre de travailleurs sociaux allant de quelques utilisateurs à quelques centaines.
|
|
||||||
|
|
||||||
Le logiciel est configurable via une interface intuitive accessible uniquement aux administrateur·rices. La configuration du logiciel permet de décider quelles rubriques sont disponibles dans les composants du logiciels: par exemple quels types d'échanges (entretien téléphonique, visite à domicile, etc.) seront saisis par les travailleurs sociaux, ou encore quelles types de problématiques sociales sont traitées par votre organisation. La configuration s'occupe également de définir des modèles de documents générés automatiquement sur base des dossiers des usagers.
|
|
||||||
|
|
||||||
Le paramétrage initial de Chill est réalisé par le client ou par un prestataire. Il existe aussi des possibilités en termes de reprise de données existantes (liste d'usagers, d'adresses, etc.). À tout moment, les administrateur·rices conservent la main sur ce qui peut être changé dans le logiciel.
|
|
||||||
@@ -1,15 +0,0 @@
|
|||||||
---
|
|
||||||
title: Installer Chill
|
|
||||||
description: Pour les enthousiastes...
|
|
||||||
image:
|
|
||||||
comments: false
|
|
||||||
---
|
|
||||||
|
|
||||||
Chill est un logiciel open-source disponible sous licence libre AGPL, dont le code source est hébergé sur [son dépôt gitlab](https://gitlab.com/Chill-Projet).
|
|
||||||
|
|
||||||
|
|
||||||
Avant de l'installer, n'hésitez pas à tester [la démo](http://demo.chill.social/).
|
|
||||||
|
|
||||||
Chill est une application web à installer sur un serveur dédié. L'application est alors disponible pour plusieurs utilisateurs sur une adresse internet, par exemple un sous-domaine du site web de votre organisation.
|
|
||||||
|
|
||||||
Chill est installable à partir d'images Docker. Moyennant des ressources internes en informatique, vous pouvez installer vous-même Chill en vous référant à la [documentation d'installation](https://chill.readthedocs.io/en/latest/installation/index.html). La plupart des organisations utilisant Chill passent par un prestataire informatique pour son installation, son hébergement et sa maintenance.
|
|
||||||
@@ -1,22 +0,0 @@
|
|||||||
---
|
|
||||||
title: Faire appel à un prestataire
|
|
||||||
subtitle:
|
|
||||||
description: Vous souhaitez obtenir des conseils sur l'installation, la configuration et la mise en service de Chill ? Ces prestataires se feront un plaisir de vous aider.
|
|
||||||
comments: false
|
|
||||||
---
|
|
||||||
|
|
||||||
|
|
||||||
<h5 class="content-subtitle bord-1">Champs Libres coopérative</h5>
|
|
||||||
|
|
||||||
- Localisé en Belgique, à Namur
|
|
||||||
- https://www.champs-libres.coop/page/social/
|
|
||||||
- références CL: https://www.champs-libres.coop/tags/chill/ ? ou à ajouter sur https://www.champs-libres.coop/page/social/
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<h5 class="content-subtitle bord-2">Votre entreprise ?</h5>
|
|
||||||
<br>
|
|
||||||
|
|
||||||
{{< notice "tip" >}}
|
|
||||||
Comme développeur, vous souhaitez devenir prestataire du logiciel Chill ?
|
|
||||||
{{< /notice >}}
|
|
||||||
@@ -1,3 +0,0 @@
|
|||||||
---
|
|
||||||
title: Fonctionnalités
|
|
||||||
---
|
|
||||||
@@ -1,38 +0,0 @@
|
|||||||
---
|
|
||||||
title: Suivi des accompagnements
|
|
||||||
subtitle: Parcours d'accompagnement
|
|
||||||
image:
|
|
||||||
description: Créer un ou plusieurs parcours d'accompagnement pour le diagnostic initial, pour le suivi des actions entreprises et des progrès réalisés.
|
|
||||||
comments: false
|
|
||||||
---
|
|
||||||
|
|
||||||
<h5 class="content-subtitle bord-1">Renseigner les différents parcours des usagers</h5>
|
|
||||||
|
|
||||||
Les usagers sont suivis dans le cadre d'un **parcours d'accompagnement**.
|
|
||||||
|
|
||||||
Chaque usager peut disposer de plusieurs parcours, en fonction des différents référents et/ou de l'organisation du service.
|
|
||||||
|
|
||||||
De même, un parcours d'accompagnement peut concerner plusieurs usagers: il peut s'agir aussi bien d'un usager seul que d'une famille complète ou un groupe de personnes.
|
|
||||||
|
|
||||||
<h5 class="content-subtitle bord-2">Caractériser les parcours</h5>
|
|
||||||
|
|
||||||
Les parcours sont associés à des **problématiques sociales**: elles indiquent "ce qui est abordé" dans le parcours.
|
|
||||||
|
|
||||||
Le parcours peut être localisé dans l'espace: auprès du domicile d'un usager ou d'une adresse arbitraire, et/ou une localisation auprès d'un service.
|
|
||||||
|
|
||||||
Il est également possible de renseigner un·e demandeur·euse, l'origine, la date d'ouverture du parcours, etc.
|
|
||||||
|
|
||||||
<h5 class="content-subtitle bord-3">Enregistrer les échanges</h5>
|
|
||||||
|
|
||||||
Chaque échange avec l'usager peut être indiqué dans le parcours, de sorte qu'il soit possible de connaitre l'historique et le contenu de ces différents moments.
|
|
||||||
|
|
||||||
Les usagers peuvent enregistrer différent types d'échange: des rendez-vous à domicile, des entretiens au salon, un simple appel, ou des réunions. Ces types d'échanges sont configurés par les administrateurs, qui peuvent également activer ou désactiver les champs de formulaires nécessaires pour chaque type.
|
|
||||||
|
|
||||||
<h5 class="content-subtitle bord-4">Lister les actions mises en œuvre</h5>
|
|
||||||
|
|
||||||
Les différents échanges permettre de construire des actions d'accompagnement: travailler un CV, demander une aide sociale, mettre en place un suivi, etc.
|
|
||||||
|
|
||||||
Pour chaque action, il est possible d'associer ou de générer des documents: résultat des CV travaillés, documents de mandatement social, … Il est même possible de générer les formulaires de demande d'aide pré-remplis !
|
|
||||||
|
|
||||||
Les objectifs et les résultats de chaque action peuvent également être renseignés.
|
|
||||||
|
|
||||||
@@ -1,16 +0,0 @@
|
|||||||
---
|
|
||||||
title: Génération des documents
|
|
||||||
subtitle:
|
|
||||||
description: Les documents peuvent être générés à partir de l'application avec un large éventail de données déjà pré-remplies, ce qui permet aux utilisateurs de gagner un temps précieux.
|
|
||||||
comments: false
|
|
||||||
---
|
|
||||||
|
|
||||||
L'accompagnement social nécessite aussi parfois de remplir des formulaires et de compiler des documents, ce qui prend beaucoup de temps.
|
|
||||||
Chill rend cette tâche beaucoup moins fastidieuse en pré-remplissant les champs avec les informations déjà enregistrées dans l'application.
|
|
||||||
|
|
||||||
Pour ce faire, l'application utilise des modèles qui peuvent être configurés spécifiquement pour votre organisation.
|
|
||||||
Les modèles peuvent aller d'un simple certificat de présence à des formulaires de demande complexes, et les informations pré-remplies peuvent aller de
|
|
||||||
d'un nom de personne à des données plus complexes sur le budget du ménage.
|
|
||||||
|
|
||||||
Les modèles doivent être configurés une seule fois, mais l'un des prestataires de services de Chill peut aider votre organisation à le faire.
|
|
||||||
L'organisation peut être aidée dans cette tâche par l'un des prestataires de services de Chill.
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
---
|
|
||||||
title: Export des statistiques
|
|
||||||
subtitle:
|
|
||||||
description: De temps en temps, vous en avez besoin, des chiffres pour étayer votre travail et donner une vue d'ensemble. Chill est là pour vous aider à faciliter cette tâche.
|
|
||||||
comments: false
|
|
||||||
---
|
|
||||||
|
|
||||||
<h5 class="content-subtitle bord-1">Le travail social en chiffres</h5>
|
|
||||||
|
|
||||||
Les chiffres ne sont certainement pas le cœur de métier du travailleur social, mais ils sont souvent nécessaires pour faire des rapports aux agences gouvernementales et obtenir des subventions.
|
|
||||||
Chill allège considérablement la compilation de ces rapports.
|
|
||||||
|
|
||||||
L'application offre la possibilité d'exporter des statistiques pour toutes ses entités, qu'il s'agisse des dossiers personnels, des activités d'assistance, des dossiers des ménages, des rendez-vous, des actions sociales,...
|
|
||||||
|
|
||||||
Un large éventail de paramètres vous permet de filtrer ou de regrouper les données afin qu'elles soient immédiatement utilisables pour vos rapports.
|
|
||||||
|
|
||||||
Un avantage supplémentaire de ce module est l'exportation de listes de personnes ou de trajectoires d'assistance,
|
|
||||||
Vous pouvez ainsi très facilement télécharger un aperçu de toutes vos activités d'assistance.
|
|
||||||
@@ -1,47 +0,0 @@
|
|||||||
---
|
|
||||||
title: Suivi des usagers
|
|
||||||
subtitle: Fiches usagers
|
|
||||||
image: /images/test/capture1.png
|
|
||||||
description: Chill vous permet de stocker une quantité importante et variée d'informations pour un suivi approfondi des dossiers individuels.
|
|
||||||
comments: false
|
|
||||||
---
|
|
||||||
|
|
||||||
<h5 class="content-subtitle bord-1">Collecter les informations de base</h5>
|
|
||||||
|
|
||||||
Chaque usager dispose **de sa propre fiche**. Elle contient les informations "de base": nom et prénom, date de naissance, données de contacts, etc.
|
|
||||||
|
|
||||||
Il est possible d'indiquer plusieurs **numéros de téléphone**, mais aussi d'indiquer des données de contact libre.
|
|
||||||
|
|
||||||
<h5 class="content-subtitle bord-2">Associer l'usager à un ménage</h5>
|
|
||||||
|
|
||||||
Chill permet d'associer chaque usager à un ménage.
|
|
||||||
|
|
||||||
Un **historique** des appartenances à un ménage est enregistré, de sorte qu'il est possible de retrouver les anciens membres du ménage.
|
|
||||||
|
|
||||||
Un ménage comporte des enfants en garde alternée ? Des membres occasionnels ? Il est également possible de renseigner cette information.
|
|
||||||
|
|
||||||
<h5 class="content-subtitle bord-3">Renseigner le budget de l'usager</h5>
|
|
||||||
|
|
||||||
Chill permet de saisir les données de budget de l'usager et des ménages: montant des revenus et des charges mensuels.
|
|
||||||
|
|
||||||
Les types de dépenses et les types de revenus peuvent être **configurés par un administrateur**: revenus du salaire, dépenses de loyer, d'électricité, etc.
|
|
||||||
|
|
||||||
Chaque ligne dans ce budget est historicisée, de sorte que les anciennes données peuvent être conservées.
|
|
||||||
|
|
||||||
<h5 class="content-subtitle bord-4">Indiquez des personnes ou des tiers "ressources"</h5>
|
|
||||||
|
|
||||||
Chill permet d'enregistrer des personnes ou des tiers comme "ressources": médecins, voisins, traducteurs, proches parents, etc.
|
|
||||||
|
|
||||||
Ces "ressources" peuvent être décrits comme un texte libre, ou provenir d'une base de donnée de tiers entretenue en commun. Il est également possible de renseigner d'autres usagers comme "ressources".
|
|
||||||
|
|
||||||
<h5 class="content-subtitle bord-1">Téléverser et générer des documents</h5>
|
|
||||||
|
|
||||||
Pour chaque fiche, il est possible de **téléverser des documents divers**: documents d'identités scannés, preuve d'adresse, courrier reçu, etc.
|
|
||||||
|
|
||||||
Il est également possible de générer des documents à partir de chaque fiche. Cela permet de générer des **courriers types** à partir des données déjà enregistrées dans le logiciel.
|
|
||||||
|
|
||||||
<h5 class="content-subtitle bord-2">Indiquer des tâches</h5>
|
|
||||||
|
|
||||||
Les travailleurs sociaux peuvent enregistrer **des tâches à réaliser** dans le dossier d'usager: prendre contact avec un avocat, rappeler la personne le jour après la prochaine opération, etc.
|
|
||||||
|
|
||||||
Ces tâches peuvent disposer d'une date d'échéance. Elles sont alors rappelées sur la page d'accueil de l'utilisateur·trice.
|
|
||||||
@@ -1,37 +0,0 @@
|
|||||||
---
|
|
||||||
title: Feuille de route
|
|
||||||
subtitle:
|
|
||||||
description: Voici ce que Chill still vous réserve et comment vous pouvez y participer individuellement ou en tant qu'organisation.
|
|
||||||
comments: false
|
|
||||||
---
|
|
||||||
|
|
||||||
<h5 class="content-subtitle bord-1">Les fonctionnalités en réflexion et celles à venir</h5>
|
|
||||||
|
|
||||||
L'équipe de développement publie les différentes fonctionnalités qui sont en cours de développement. La liste est disponible [ici](https://gitlab.com/Chill-Projet/chill-bundles/-/boards/7086313?label_name[]=kind%3A%3Afeature).
|
|
||||||
|
|
||||||
Certaines fonctionnalités sont à l'état d'une "idée", sans détails ni financement (colonne "idea" dans le lien indiqué).
|
|
||||||
|
|
||||||
D'autres fonctionnalités ont été plus amplement réfléchies, mais sont en attente de financement ou de la confirmation d'un financement. Elles sont décrites dans la colonne "nearly-ready" de la feuille de route.
|
|
||||||
|
|
||||||
Enfin, des fonctionnalités sont en cours de développements et seront bientôt disponibles: elles se trouvent dans la colonne "on-the-go".
|
|
||||||
|
|
||||||
Une fois prête, vous retrouverez ces fonctionnalités dans les notes qui accompagnement [chaque nouvelle version](https://gitlab.com/Chill-Projet/chill-bundles/-/releases).
|
|
||||||
|
|
||||||
<h5 class="content-subtitle bord-2">Ajouter ou financer des nouvelles fonctionnalités ?</h5>
|
|
||||||
|
|
||||||
Chill a été financé par la commande de développements antérieurs: d'autres instutions ont payé des développeurs pour ajouter des fonctionnalités. Vous en disposez aujourhui !
|
|
||||||
|
|
||||||
Champs-Libres, qui soutient également le développement du logiciel, utilise une partie des ventes d'offre d'hébergement en maintenance et développement.
|
|
||||||
|
|
||||||
Pour contribuer à la pérennité et au développement du logiciel, vous pouvez:
|
|
||||||
|
|
||||||
- commander une offre d'hébergement auprès des prestataires qui maintiennent le logiciel;
|
|
||||||
- financer une fonctionnalité qui répondra à votre besoin;
|
|
||||||
- ou financer une idée de fonctionnalité en attente d'un mécène.
|
|
||||||
|
|
||||||
Une fonctionnalité est trop chère pour vous ? N'hésitez pas à nous contacter: votre besoin correspond sans doute également à ceux d'autres institutions. Il est possibile de mutualiser des développements d'ampleur avec ces autres services: les petits ruisseaux font les grandes rivières!
|
|
||||||
|
|
||||||
|
|
||||||
<h5 class="content-subtitle bord-3">Dernières fonctionnalités développées</h5>
|
|
||||||
|
|
||||||
Les nouvelles fonctionnalités sont décrites [dans les notes de chaque nouvelle version](https://gitlab.com/Chill-Projet/chill-bundles/-/releases).
|
|
||||||
@@ -1,15 +0,0 @@
|
|||||||
|
|
||||||
---
|
|
||||||
title: Suivi des décisions
|
|
||||||
subtitle:
|
|
||||||
description: Les flux de travail vous permettent d'échelonner des tâches plus complexes sans perdre de vue qui est responsable et quelle décision doit être prise.
|
|
||||||
comments: false
|
|
||||||
---
|
|
||||||
|
|
||||||
**Pour les grandes équipes**, Chill permet de suivre des décisions et de les valider au sein d'une hiérarchie.
|
|
||||||
|
|
||||||
Il est possible de configurer des cheminements de suivi de décision: faire valider une décision par un supérieure hiérarchique, obtenir le visa d'un service compétent, s'assurer que le document est envoyé par les services compétents, etc.
|
|
||||||
|
|
||||||
Le cheminement peut être contraint pour s'adapter à des cheminement de validation existants.
|
|
||||||
|
|
||||||
Par défaut, Chill dispose d'un workflow généraliste, qui convient déjà à de nombreux cas possibles.
|
|
||||||
@@ -1,14 +0,0 @@
|
|||||||
---
|
|
||||||
enable: true
|
|
||||||
title: "Ready to build your next project with Hugo?"
|
|
||||||
image: "/images/call-to-action.png"
|
|
||||||
description: "Experience the future of web development with Hugoplate and Hugo. Build lightning-fast static sites with ease and flexibility."
|
|
||||||
button:
|
|
||||||
enable: true
|
|
||||||
label: "Get Started Now"
|
|
||||||
link: "https://github.com/zeon-studio/hugoplate"
|
|
||||||
|
|
||||||
# don't create a separate page
|
|
||||||
_build:
|
|
||||||
render: "never"
|
|
||||||
---
|
|
||||||
@@ -1,26 +0,0 @@
|
|||||||
---
|
|
||||||
enable: false
|
|
||||||
title: "Ce qu'en disent les utilisateurs"
|
|
||||||
description:
|
|
||||||
|
|
||||||
# Testimonials
|
|
||||||
testimonials:
|
|
||||||
- name: "Claire Denoote"
|
|
||||||
designation: "Assistante sociale"
|
|
||||||
avatar: "/images/avatar-sm.png"
|
|
||||||
content: "bim mon texte"
|
|
||||||
|
|
||||||
- name: "Simon Verfeuil"
|
|
||||||
designation: "Secrétariat"
|
|
||||||
avatar: "/images/avatar-sm.png"
|
|
||||||
content: "bim mon texte"
|
|
||||||
|
|
||||||
- name: "Françoise Poutou"
|
|
||||||
designation: "Agente de proximité"
|
|
||||||
avatar: "/images/avatar-sm.png"
|
|
||||||
content: "bim mon texte"
|
|
||||||
|
|
||||||
# don't create a separate page
|
|
||||||
_build:
|
|
||||||
render: "never"
|
|
||||||
---
|
|
||||||
@@ -1,3 +0,0 @@
|
|||||||
---
|
|
||||||
title: Pour commencer
|
|
||||||
---
|
|
||||||
@@ -1,44 +0,0 @@
|
|||||||
---
|
|
||||||
title: Développeurs
|
|
||||||
subtitle:
|
|
||||||
description: Un appel aux développeurs avec un cœur pour les logiciels libres
|
|
||||||
comments: false
|
|
||||||
---
|
|
||||||
|
|
||||||
|
|
||||||
<h5 class="content-subtitle bord-1">Code source de Chill</h5>
|
|
||||||
|
|
||||||
Le code source de Chill se trouve dans deux dépôts distincts.
|
|
||||||
|
|
||||||
Le premier dépôt, appelé `chill-skeleton-basic`, est celui utilisé pour l'[installation]().
|
|
||||||
|
|
||||||
Il contient toutes les dépendances nécessaires à l'installation. C'est dans ce dépôt qu'on peut aussi personnaliser Chill.
|
|
||||||
https://gitea.champs-libres.be/Chill-project/chill-skeleton-basic
|
|
||||||
|
|
||||||
(Attention, [le dépôt sur gitlab](https://gitlab.com/Chill-Projet/chill-skeleton-basic) est en readonly depuis avril 2023)
|
|
||||||
|
|
||||||
Le second dépôt, nommé `chill-bundles` est en réalité le dépôt principal de Chill. C'est un regroupement des Bundles les plus couramment utilisés, qui peuvent être activés/désactivés selon les besoins.
|
|
||||||
https://gitlab.com/Chill-Projet/chill-bundles
|
|
||||||
|
|
||||||
C'est une dépendance que `composer` va installer tout seul, raison pour laquelle ce paquet est répertorié dans l'écosystème des packages PHP: https://packagist.org/packages/chill-project/chill-bundles
|
|
||||||
|
|
||||||
<h5 class="content-subtitle bord-2">Issues</h5>
|
|
||||||
|
|
||||||
Les tickets concernant le code de Chill se situent par conséquent dans ce dépôt chill-bundles, voir https://gitlab.com/Chill-Projet/chill-bundles/-/issues
|
|
||||||
|
|
||||||
|
|
||||||
<h5 class="content-subtitle bord-3">Documentation technique</h5>
|
|
||||||
|
|
||||||
La documentation technique de Chill se trouve à l'adresse suivante: http://docs.chill.social/en/latest/
|
|
||||||
|
|
||||||
|
|
||||||
<h5 class="content-subtitle bord-4">Échanger avec les développeurs</h5>
|
|
||||||
|
|
||||||
Il existe un salon sur la messagerie Matrix, pour échanger avec les développeurs de Chill.
|
|
||||||
|
|
||||||
`#chill-social-admin:matrix.org`
|
|
||||||
|
|
||||||
|
|
||||||
<h5 class="content-subtitle bord-1">Contribuer, devenir prestataire</h5>
|
|
||||||
|
|
||||||
Si vous souhaitez contribuer au code de Chill et peut-être devenir prestataire du logiciel, jetez un oeil à la page [Contributing](https://gitlab.com/Chill-Projet/chill-bundles/-/blob/master/CONTRIBUTING.md).
|
|
||||||
@@ -1,9 +0,0 @@
|
|||||||
---
|
|
||||||
title: Brochure
|
|
||||||
subtitle:
|
|
||||||
image:
|
|
||||||
comments: false
|
|
||||||
---
|
|
||||||
|
|
||||||
|
|
||||||
Télécharger la brochure (PDF)
|
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user