Compare commits
26 Commits
202401.22.
...
main
Author | SHA1 | Date | |
---|---|---|---|
d5a3e08223 | |||
0008fc3b93 | |||
4cf0f2a973 | |||
8e077c50c8 | |||
35010d973b | |||
f4837a5d5d | |||
c23054fabc | |||
b498138f6d | |||
b58d28db09 | |||
935853df53 | |||
4a021c933f | |||
9d961ad678 | |||
d60785d799 | |||
755dfaefaa | |||
663969582b | |||
5890464c9e | |||
d3ee46c7ab | |||
e45503469a | |||
913d278533 | |||
ac40c6d717 | |||
005d22babd | |||
f53ffb555f | |||
548d005c21 | |||
1cd6c41715 | |||
022dd5b48b | |||
bf02657481 |
3
.changes/1.0.0.md
Normal file
3
.changes/1.0.0.md
Normal file
@ -0,0 +1,3 @@
|
||||
## 1.0.0 - 2024-01-24
|
||||
### Added
|
||||
* Started brand new website
|
3
.changes/2.0.0.md
Normal file
3
.changes/2.0.0.md
Normal file
@ -0,0 +1,3 @@
|
||||
## 2.0.0 - 2024-01-24
|
||||
### Changed
|
||||
* Button styling updated to match the other buttons
|
3
.changes/2.1.0.md
Normal file
3
.changes/2.1.0.md
Normal file
@ -0,0 +1,3 @@
|
||||
## 2.1.0 - 2024-01-29
|
||||
### Changed
|
||||
* Styling language selector improved for visibility and dutch content updated
|
3
.changes/2.2.0.md
Normal file
3
.changes/2.2.0.md
Normal file
@ -0,0 +1,3 @@
|
||||
## 2.2.0 - 2024-02-01
|
||||
### Fixed
|
||||
* Styling of workflow header in english page
|
3
.changes/2.3.0.md
Normal file
3
.changes/2.3.0.md
Normal file
@ -0,0 +1,3 @@
|
||||
## 2.3.0 - 2024-02-07
|
||||
### Fixed
|
||||
* Font fixed to work across browsers
|
3
.changes/2.4.0.md
Normal file
3
.changes/2.4.0.md
Normal file
@ -0,0 +1,3 @@
|
||||
## 2.4.0 - 2024-02-07
|
||||
### Added
|
||||
* Brochure added for downloading
|
3
.changes/3.0.0.md
Normal file
3
.changes/3.0.0.md
Normal file
@ -0,0 +1,3 @@
|
||||
## 3.0.0 - 2024-04-17
|
||||
### Changed
|
||||
* Change made to website title tag to improve google indexation
|
3
.changes/3.1.0.md
Normal file
3
.changes/3.1.0.md
Normal file
@ -0,0 +1,3 @@
|
||||
## 3.1.0 - 2024-04-17
|
||||
### Added
|
||||
* Link and qr code added to join matrix chat for developers
|
6
.changes/header.tpl.md
Normal file
6
.changes/header.tpl.md
Normal file
@ -0,0 +1,6 @@
|
||||
# Changelog
|
||||
All notable changes to this project will be documented in this file.
|
||||
|
||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
||||
adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html),
|
||||
and is generated by [Changie](https://github.com/miniscruff/changie).
|
0
.changes/unreleased/.gitkeep
Normal file
0
.changes/unreleased/.gitkeep
Normal file
26
.changie.yaml
Normal file
26
.changie.yaml
Normal file
@ -0,0 +1,26 @@
|
||||
changesDir: .changes
|
||||
unreleasedDir: unreleased
|
||||
headerPath: header.tpl.md
|
||||
changelogPath: CHANGELOG.md
|
||||
versionExt: md
|
||||
versionFormat: '## {{.Version}} - {{.Time.Format "2006-01-02"}}'
|
||||
kindFormat: '### {{.Kind}}'
|
||||
changeFormat: '* {{.Body}}'
|
||||
kinds:
|
||||
- label: Added
|
||||
auto: minor
|
||||
- label: Changed
|
||||
auto: major
|
||||
- label: Deprecated
|
||||
auto: minor
|
||||
- label: Removed
|
||||
auto: major
|
||||
- label: Fixed
|
||||
auto: patch
|
||||
- label: Security
|
||||
auto: patch
|
||||
newlines:
|
||||
afterChangelogHeader: 1
|
||||
beforeChangelogVersion: 1
|
||||
endOfVersion: 1
|
||||
envPrefix: CHANGIE_
|
70
.gitea/workflows/build-image.yaml
Normal file
70
.gitea/workflows/build-image.yaml
Normal file
@ -0,0 +1,70 @@
|
||||
name: Build an image to deploy website
|
||||
|
||||
on:
|
||||
# Runs on pushes targeting the default branch
|
||||
push:
|
||||
tags:
|
||||
- v*
|
||||
|
||||
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
|
||||
permissions:
|
||||
contents: read
|
||||
pages: write
|
||||
id-token: write
|
||||
|
||||
# Environment variables available to all jobs and steps in this workflow
|
||||
env:
|
||||
HUGO_ENV: production
|
||||
HUGO_VERSION: "0.121.2"
|
||||
GO_VERSION: "1.21.4"
|
||||
NODE_VERSION: "18"
|
||||
|
||||
jobs:
|
||||
# Build job
|
||||
build:
|
||||
runs-on: cth-ubuntu-latest
|
||||
steps:
|
||||
- name: Check out repository
|
||||
uses: https://github.com/actions/checkout@v4
|
||||
|
||||
- name: Setup node
|
||||
uses: https://github.com/actions/setup-node@v4
|
||||
with:
|
||||
node-version: '${{ NODE_VERSION }}'
|
||||
|
||||
- name: Setup Hugo
|
||||
uses: https://github.com/peaceiris/actions-hugo@v2
|
||||
with:
|
||||
hugo-version: '${{ HUGO_VERSION }}'
|
||||
extended: true
|
||||
|
||||
- name: Setup Go
|
||||
uses: https://github.com/actions/setup-go@v5
|
||||
with:
|
||||
go-version: '1.21.4'
|
||||
|
||||
- name: Setup Project
|
||||
run: npm run project-setup
|
||||
|
||||
- name: Install npm dependencies
|
||||
run: npm install
|
||||
|
||||
- name: Compile website
|
||||
run: npm run build
|
||||
|
||||
- name: Set up Docker Buildx
|
||||
uses: https://github.com/docker/setup-buildx-action@v3
|
||||
|
||||
- name: Login to registry
|
||||
uses: https://github.com/docker/login-action@v3
|
||||
with:
|
||||
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
||||
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
||||
registry: 'h3m6q87t.gra7.container-registry.ovh.net'
|
||||
|
||||
- name: Build and push
|
||||
uses: https://github.com/docker/build-push-action@v5
|
||||
with:
|
||||
context: .
|
||||
push: true
|
||||
tags: 'h3m6q87t.gra7.container-registry.ovh.net/chill_website/web:${{ github.ref_name }}'
|
75
.github/workflows/main.yml
vendored
75
.github/workflows/main.yml
vendored
@ -1,75 +0,0 @@
|
||||
# Sample workflow for building and deploying a Hugo site to GitHub Pages
|
||||
name: Deploy Hugo site to Pages
|
||||
|
||||
on:
|
||||
# Runs on pushes targeting the default branch
|
||||
push:
|
||||
branches: ["main"]
|
||||
|
||||
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
|
||||
permissions:
|
||||
contents: read
|
||||
pages: write
|
||||
id-token: write
|
||||
|
||||
# Environment variables available to all jobs and steps in this workflow
|
||||
env:
|
||||
HUGO_ENV: production
|
||||
HUGO_VERSION: "0.118.2"
|
||||
GO_VERSION: "1.20.5"
|
||||
NODE_VERSION: "18.15.0"
|
||||
TINA_CLIENT_ID: ${{ vars.TINA_CLIENT_ID }}
|
||||
TINA_TOKEN: ${{ vars.TINA_TOKEN }}
|
||||
|
||||
jobs:
|
||||
# Build job
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- name: Set up Node.js
|
||||
uses: actions/setup-node@v3
|
||||
with:
|
||||
node-version: ${{ env.NODE_VERSION }}
|
||||
|
||||
- name: Install Hugo
|
||||
run: |
|
||||
curl -LO "https://github.com/gohugoio/hugo/releases/download/v${{ env.HUGO_VERSION }}/hugo_extended_${{ env.HUGO_VERSION }}_Linux-64bit.tar.gz"
|
||||
tar -xvf hugo_extended_${{ env.HUGO_VERSION }}_Linux-64bit.tar.gz
|
||||
sudo mv hugo /usr/local/bin/
|
||||
rm hugo_extended_${{ env.HUGO_VERSION }}_Linux-64bit.tar.gz
|
||||
hugo version
|
||||
|
||||
- name: Install Go
|
||||
run: |
|
||||
curl -LO "https://dl.google.com/go/go${{ env.GO_VERSION }}.linux-amd64.tar.gz"
|
||||
sudo tar -C /usr/local -xzf go${{ env.GO_VERSION }}.linux-amd64.tar.gz
|
||||
echo "export PATH=$PATH:/usr/local/go/bin" >> $GITHUB_ENV
|
||||
rm go${{ env.GO_VERSION }}.linux-amd64.tar.gz
|
||||
go version
|
||||
|
||||
- name: Setup Project
|
||||
run: npm run project-setup
|
||||
|
||||
- name: Install npm dependencies
|
||||
run: npm install
|
||||
|
||||
- name: Publish to GitHub Pages
|
||||
run: npm run build
|
||||
|
||||
- name: Upload artifact
|
||||
uses: actions/upload-pages-artifact@v1
|
||||
with:
|
||||
path: ./public
|
||||
|
||||
# Deployment job
|
||||
deploy:
|
||||
environment:
|
||||
name: github-pages
|
||||
url: ${{ steps.deployment.outputs.page_url }}
|
||||
runs-on: ubuntu-latest
|
||||
needs: build
|
||||
steps:
|
||||
- name: Deploy to GitHub Pages
|
||||
id: deployment
|
||||
uses: actions/deploy-pages@v2
|
3
.gitignore
vendored
3
.gitignore
vendored
@ -14,4 +14,5 @@ resources
|
||||
jsconfig.json
|
||||
hugo_stats.json
|
||||
go.sum
|
||||
yarn.lock
|
||||
yarn.lock
|
||||
.idea/*
|
||||
|
8
.idea/.gitignore
generated
vendored
8
.idea/.gitignore
generated
vendored
@ -1,8 +0,0 @@
|
||||
# Default ignored files
|
||||
/shelf/
|
||||
/workspace.xml
|
||||
# Editor-based HTTP Client requests
|
||||
/httpRequests/
|
||||
# Datasource local storage ignored files
|
||||
/dataSources/
|
||||
/dataSources.local.xml
|
62
.idea/codeStyles/Project.xml
generated
Normal file
62
.idea/codeStyles/Project.xml
generated
Normal file
@ -0,0 +1,62 @@
|
||||
<component name="ProjectCodeStyleConfiguration">
|
||||
<code_scheme name="Project" version="173">
|
||||
<HTMLCodeStyleSettings>
|
||||
<option name="HTML_SPACE_INSIDE_EMPTY_TAG" value="true" />
|
||||
</HTMLCodeStyleSettings>
|
||||
<JSCodeStyleSettings version="0">
|
||||
<option name="FORCE_SEMICOLON_STYLE" value="true" />
|
||||
<option name="SPACE_BEFORE_FUNCTION_LEFT_PARENTH" value="false" />
|
||||
<option name="FORCE_QUOTE_STYlE" value="true" />
|
||||
<option name="ENFORCE_TRAILING_COMMA" value="Remove" />
|
||||
<option name="SPACES_WITHIN_OBJECT_LITERAL_BRACES" value="true" />
|
||||
<option name="SPACES_WITHIN_IMPORTS" value="true" />
|
||||
</JSCodeStyleSettings>
|
||||
<TypeScriptCodeStyleSettings version="0">
|
||||
<option name="FORCE_SEMICOLON_STYLE" value="true" />
|
||||
<option name="SPACE_BEFORE_FUNCTION_LEFT_PARENTH" value="false" />
|
||||
<option name="FORCE_QUOTE_STYlE" value="true" />
|
||||
<option name="ENFORCE_TRAILING_COMMA" value="Remove" />
|
||||
<option name="SPACES_WITHIN_OBJECT_LITERAL_BRACES" value="true" />
|
||||
<option name="SPACES_WITHIN_IMPORTS" value="true" />
|
||||
</TypeScriptCodeStyleSettings>
|
||||
<VueCodeStyleSettings>
|
||||
<option name="INTERPOLATION_NEW_LINE_AFTER_START_DELIMITER" value="false" />
|
||||
<option name="INTERPOLATION_NEW_LINE_BEFORE_END_DELIMITER" value="false" />
|
||||
</VueCodeStyleSettings>
|
||||
<codeStyleSettings language="HTML">
|
||||
<option name="SOFT_MARGINS" value="80" />
|
||||
<indentOptions>
|
||||
<option name="INDENT_SIZE" value="2" />
|
||||
<option name="CONTINUATION_INDENT_SIZE" value="2" />
|
||||
<option name="TAB_SIZE" value="2" />
|
||||
</indentOptions>
|
||||
</codeStyleSettings>
|
||||
<codeStyleSettings language="JavaScript">
|
||||
<option name="SOFT_MARGINS" value="80" />
|
||||
<indentOptions>
|
||||
<option name="INDENT_SIZE" value="2" />
|
||||
<option name="CONTINUATION_INDENT_SIZE" value="2" />
|
||||
<option name="TAB_SIZE" value="2" />
|
||||
</indentOptions>
|
||||
</codeStyleSettings>
|
||||
<codeStyleSettings language="TypeScript">
|
||||
<option name="SOFT_MARGINS" value="80" />
|
||||
<indentOptions>
|
||||
<option name="INDENT_SIZE" value="2" />
|
||||
<option name="CONTINUATION_INDENT_SIZE" value="2" />
|
||||
<option name="TAB_SIZE" value="2" />
|
||||
</indentOptions>
|
||||
</codeStyleSettings>
|
||||
<codeStyleSettings language="Vue">
|
||||
<option name="SOFT_MARGINS" value="80" />
|
||||
<indentOptions>
|
||||
<option name="CONTINUATION_INDENT_SIZE" value="2" />
|
||||
</indentOptions>
|
||||
</codeStyleSettings>
|
||||
<codeStyleSettings language="yaml">
|
||||
<indentOptions>
|
||||
<option name="INDENT_SIZE" value="4" />
|
||||
</indentOptions>
|
||||
</codeStyleSettings>
|
||||
</code_scheme>
|
||||
</component>
|
5
.idea/codeStyles/codeStyleConfig.xml
generated
Normal file
5
.idea/codeStyles/codeStyleConfig.xml
generated
Normal file
@ -0,0 +1,5 @@
|
||||
<component name="ProjectCodeStyleConfiguration">
|
||||
<state>
|
||||
<option name="USE_PER_PROJECT_SETTINGS" value="true" />
|
||||
</state>
|
||||
</component>
|
6
.idea/inspectionProfiles/Project_Default.xml
generated
Normal file
6
.idea/inspectionProfiles/Project_Default.xml
generated
Normal file
@ -0,0 +1,6 @@
|
||||
<component name="InspectionProjectProfileManager">
|
||||
<profile version="1.0">
|
||||
<option name="myName" value="Project Default" />
|
||||
<inspection_tool class="JSHint" enabled="true" level="ERROR" enabled_by_default="true" />
|
||||
</profile>
|
||||
</component>
|
16
.idea/jsLinters/jshint.xml
generated
Normal file
16
.idea/jsLinters/jshint.xml
generated
Normal file
@ -0,0 +1,16 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="JSHintConfiguration" version="2.13.6" use-config-file="true" use-custom-config-file="true" custom-config-file-path="$PROJECT_DIR$/.jshintrc">
|
||||
<option bitwise="true" />
|
||||
<option browser="true" />
|
||||
<option curly="true" />
|
||||
<option eqeqeq="true" />
|
||||
<option forin="true" />
|
||||
<option maxerr="50" />
|
||||
<option noarg="true" />
|
||||
<option noempty="true" />
|
||||
<option nonew="true" />
|
||||
<option strict="true" />
|
||||
<option undef="true" />
|
||||
</component>
|
||||
</project>
|
2
.idea/modules.xml
generated
2
.idea/modules.xml
generated
@ -2,7 +2,7 @@
|
||||
<project version="4">
|
||||
<component name="ProjectModuleManager">
|
||||
<modules>
|
||||
<module fileurl="file://$PROJECT_DIR$/.idea/hugoplate.iml" filepath="$PROJECT_DIR$/.idea/hugoplate.iml" />
|
||||
<module fileurl="file://$PROJECT_DIR$/.idea/chill_hugoplate.iml" filepath="$PROJECT_DIR$/.idea/chill_hugoplate.iml" />
|
||||
</modules>
|
||||
</component>
|
||||
</project>
|
99
.idea/workspace.xml
generated
Normal file
99
.idea/workspace.xml
generated
Normal file
@ -0,0 +1,99 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="AutoImportSettings">
|
||||
<option name="autoReloadType" value="SELECTIVE" />
|
||||
</component>
|
||||
<component name="ChangeListManager">
|
||||
<list default="true" id="f045a27b-2f7c-4e29-b0d1-b2f3a8438404" name="Changes" comment="Setup docker image and CI" />
|
||||
<list id="e6042637-2834-4c28-8317-b4fabf609992" name="Changes by julielenaerts" comment="" />
|
||||
<option name="SHOW_DIALOG" value="false" />
|
||||
<option name="HIGHLIGHT_CONFLICTS" value="true" />
|
||||
<option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
|
||||
<option name="LAST_RESOLUTION" value="IGNORE" />
|
||||
</component>
|
||||
<component name="ComposerSettings">
|
||||
<execution />
|
||||
</component>
|
||||
<component name="Git.Settings">
|
||||
<option name="RECENT_BRANCH_BY_REPOSITORY">
|
||||
<map>
|
||||
<entry key="$PROJECT_DIR$" value="main" />
|
||||
</map>
|
||||
</option>
|
||||
<option name="RECENT_GIT_ROOT_PATH" value="$PROJECT_DIR$" />
|
||||
</component>
|
||||
<component name="KubernetesApiProvider"><![CDATA[{
|
||||
"isMigrated": true
|
||||
}]]></component>
|
||||
<component name="MarkdownSettingsMigration">
|
||||
<option name="stateVersion" value="1" />
|
||||
</component>
|
||||
<component name="PhpWorkspaceProjectConfiguration" interpreter_name="/bin/php" />
|
||||
<component name="ProjectColorInfo"><![CDATA[{
|
||||
"associatedIndex": 0
|
||||
}]]></component>
|
||||
<component name="ProjectId" id="2bOXEJ77FlOs2KdDsagHQb8lOI4" />
|
||||
<component name="ProjectViewState">
|
||||
<option name="hideEmptyMiddlePackages" value="true" />
|
||||
<option name="showLibraryContents" value="true" />
|
||||
<option name="showMembers" value="true" />
|
||||
<option name="sortByType" value="true" />
|
||||
<option name="sortKey" value="BY_TYPE" />
|
||||
</component>
|
||||
<component name="PropertiesComponent"><![CDATA[{
|
||||
"keyToString": {
|
||||
"RunOnceActivity.OpenProjectViewOnStart": "true",
|
||||
"RunOnceActivity.ShowReadmeOnStart": "true",
|
||||
"git-widget-placeholder": "gitea-ci",
|
||||
"node.js.detected.package.eslint": "true",
|
||||
"node.js.detected.package.tslint": "true",
|
||||
"node.js.selected.package.eslint": "(autodetect)",
|
||||
"node.js.selected.package.tslint": "(autodetect)",
|
||||
"nodejs_package_manager_path": "npm",
|
||||
"vue.rearranger.settings.migration": "true"
|
||||
}
|
||||
}]]></component>
|
||||
<component name="SharedIndexes">
|
||||
<attachedChunks>
|
||||
<set>
|
||||
<option value="bundled-php-predefined-ba97393d7c68-b4dcf6bb9de9-com.jetbrains.php.sharedIndexes-PS-233.13135.108" />
|
||||
</set>
|
||||
</attachedChunks>
|
||||
</component>
|
||||
<component name="SpellCheckerSettings" RuntimeDictionaries="0" Folders="0" CustomDictionaries="0" DefaultDictionary="application-level" UseSingleDictionary="true" transferred="true" />
|
||||
<component name="TaskManager">
|
||||
<task active="true" id="Default" summary="Default task">
|
||||
<changelist id="f045a27b-2f7c-4e29-b0d1-b2f3a8438404" name="Changes" comment="" />
|
||||
<created>1706086985231</created>
|
||||
<option name="number" value="Default" />
|
||||
<option name="presentableId" value="Default" />
|
||||
<updated>1706086985231</updated>
|
||||
<workItem from="1706086986311" duration="2804000" />
|
||||
</task>
|
||||
<task id="LOCAL-00001" summary="Setup docker image and CI">
|
||||
<option name="closed" value="true" />
|
||||
<created>1706089591660</created>
|
||||
<option name="number" value="00001" />
|
||||
<option name="presentableId" value="LOCAL-00001" />
|
||||
<option name="project" value="LOCAL" />
|
||||
<updated>1706089591660</updated>
|
||||
</task>
|
||||
<task id="LOCAL-00002" summary="Setup docker image and CI">
|
||||
<option name="closed" value="true" />
|
||||
<created>1706089758423</created>
|
||||
<option name="number" value="00002" />
|
||||
<option name="presentableId" value="LOCAL-00002" />
|
||||
<option name="project" value="LOCAL" />
|
||||
<updated>1706089758423</updated>
|
||||
</task>
|
||||
<option name="localTasksCounter" value="3" />
|
||||
<servers />
|
||||
</component>
|
||||
<component name="TypeScriptGeneratedFilesManager">
|
||||
<option name="version" value="3" />
|
||||
</component>
|
||||
<component name="VcsManagerConfiguration">
|
||||
<MESSAGE value="Setup docker image and CI" />
|
||||
<option name="LAST_COMMIT_MESSAGE" value="Setup docker image and CI" />
|
||||
</component>
|
||||
</project>
|
39
CHANGELOG.md
Normal file
39
CHANGELOG.md
Normal file
@ -0,0 +1,39 @@
|
||||
# Changelog
|
||||
All notable changes to this project will be documented in this file.
|
||||
|
||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
||||
adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html),
|
||||
and is generated by [Changie](https://github.com/miniscruff/changie).
|
||||
|
||||
|
||||
## 3.1.0 - 2024-04-17
|
||||
### Added
|
||||
* Link and qr code added to join matrix chat for developers
|
||||
|
||||
## 3.0.0 - 2024-04-17
|
||||
### Changed
|
||||
* Change made to website title tag to improve google indexation
|
||||
|
||||
## 2.4.0 - 2024-02-07
|
||||
### Added
|
||||
* Brochure added for downloading
|
||||
|
||||
## 2.3.0 - 2024-02-07
|
||||
### Fixed
|
||||
* Font fixed to work across browsers
|
||||
|
||||
## 2.2.0 - 2024-02-01
|
||||
### Fixed
|
||||
* Styling of workflow header in english page
|
||||
|
||||
## 2.1.0 - 2024-01-29
|
||||
### Changed
|
||||
* Styling language selector improved for visibility and dutch content updated
|
||||
|
||||
## 2.0.0 - 2024-01-24
|
||||
### Changed
|
||||
* Button styling updated to match the other buttons
|
||||
|
||||
## 1.0.0 - 2024-01-24
|
||||
### Added
|
||||
* Started brand new website
|
@ -1,5 +1,3 @@
|
||||
FROM klakegg/hugo:alpine-onbuild AS hugo
|
||||
|
||||
FROM caddy:2-alpine
|
||||
|
||||
ADD src/ /usr/share/caddy/
|
||||
ADD public/ /usr/share/caddy/
|
||||
|
214
LICENSE
214
LICENSE
@ -1,21 +1,201 @@
|
||||
The MIT License (MIT)
|
||||
Apache License
|
||||
Version 2.0, January 2004
|
||||
http://www.apache.org/licenses/
|
||||
|
||||
Copyright (c) 2023 - Present, Zeon Studio
|
||||
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
1. Definitions.
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
"License" shall mean the terms and conditions for use, reproduction,
|
||||
and distribution as defined by Sections 1 through 9 of this document.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
||||
"Licensor" shall mean the copyright owner or entity authorized by
|
||||
the copyright owner that is granting the License.
|
||||
|
||||
"Legal Entity" shall mean the union of the acting entity and all
|
||||
other entities that control, are controlled by, or are under common
|
||||
control with that entity. For the purposes of this definition,
|
||||
"control" means (i) the power, direct or indirect, to cause the
|
||||
direction or management of such entity, whether by contract or
|
||||
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
||||
outstanding shares, or (iii) beneficial ownership of such entity.
|
||||
|
||||
"You" (or "Your") shall mean an individual or Legal Entity
|
||||
exercising permissions granted by this License.
|
||||
|
||||
"Source" form shall mean the preferred form for making modifications,
|
||||
including but not limited to software source code, documentation
|
||||
source, and configuration files.
|
||||
|
||||
"Object" form shall mean any form resulting from mechanical
|
||||
transformation or translation of a Source form, including but
|
||||
not limited to compiled object code, generated documentation,
|
||||
and conversions to other media types.
|
||||
|
||||
"Work" shall mean the work of authorship, whether in Source or
|
||||
Object form, made available under the License, as indicated by a
|
||||
copyright notice that is included in or attached to the work
|
||||
(an example is provided in the Appendix below).
|
||||
|
||||
"Derivative Works" shall mean any work, whether in Source or Object
|
||||
form, that is based on (or derived from) the Work and for which the
|
||||
editorial revisions, annotations, elaborations, or other modifications
|
||||
represent, as a whole, an original work of authorship. For the purposes
|
||||
of this License, Derivative Works shall not include works that remain
|
||||
separable from, or merely link (or bind by name) to the interfaces of,
|
||||
the Work and Derivative Works thereof.
|
||||
|
||||
"Contribution" shall mean any work of authorship, including
|
||||
the original version of the Work and any modifications or additions
|
||||
to that Work or Derivative Works thereof, that is intentionally
|
||||
submitted to Licensor for inclusion in the Work by the copyright owner
|
||||
or by an individual or Legal Entity authorized to submit on behalf of
|
||||
the copyright owner. For the purposes of this definition, "submitted"
|
||||
means any form of electronic, verbal, or written communication sent
|
||||
to the Licensor or its representatives, including but not limited to
|
||||
communication on electronic mailing lists, source code control systems,
|
||||
and issue tracking systems that are managed by, or on behalf of, the
|
||||
Licensor for the purpose of discussing and improving the Work, but
|
||||
excluding communication that is conspicuously marked or otherwise
|
||||
designated in writing by the copyright owner as "Not a Contribution."
|
||||
|
||||
"Contributor" shall mean Licensor and any individual or Legal Entity
|
||||
on behalf of whom a Contribution has been received by Licensor and
|
||||
subsequently incorporated within the Work.
|
||||
|
||||
2. Grant of Copyright License. Subject to the terms and conditions of
|
||||
this License, each Contributor hereby grants to You a perpetual,
|
||||
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
||||
copyright license to reproduce, prepare Derivative Works of,
|
||||
publicly display, publicly perform, sublicense, and distribute the
|
||||
Work and such Derivative Works in Source or Object form.
|
||||
|
||||
3. Grant of Patent License. Subject to the terms and conditions of
|
||||
this License, each Contributor hereby grants to You a perpetual,
|
||||
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
||||
(except as stated in this section) patent license to make, have made,
|
||||
use, offer to sell, sell, import, and otherwise transfer the Work,
|
||||
where such license applies only to those patent claims licensable
|
||||
by such Contributor that are necessarily infringed by their
|
||||
Contribution(s) alone or by combination of their Contribution(s)
|
||||
with the Work to which such Contribution(s) was submitted. If You
|
||||
institute patent litigation against any entity (including a
|
||||
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
||||
or a Contribution incorporated within the Work constitutes direct
|
||||
or contributory patent infringement, then any patent licenses
|
||||
granted to You under this License for that Work shall terminate
|
||||
as of the date such litigation is filed.
|
||||
|
||||
4. Redistribution. You may reproduce and distribute copies of the
|
||||
Work or Derivative Works thereof in any medium, with or without
|
||||
modifications, and in Source or Object form, provided that You
|
||||
meet the following conditions:
|
||||
|
||||
(a) You must give any other recipients of the Work or
|
||||
Derivative Works a copy of this License; and
|
||||
|
||||
(b) You must cause any modified files to carry prominent notices
|
||||
stating that You changed the files; and
|
||||
|
||||
(c) You must retain, in the Source form of any Derivative Works
|
||||
that You distribute, all copyright, patent, trademark, and
|
||||
attribution notices from the Source form of the Work,
|
||||
excluding those notices that do not pertain to any part of
|
||||
the Derivative Works; and
|
||||
|
||||
(d) If the Work includes a "NOTICE" text file as part of its
|
||||
distribution, then any Derivative Works that You distribute must
|
||||
include a readable copy of the attribution notices contained
|
||||
within such NOTICE file, excluding those notices that do not
|
||||
pertain to any part of the Derivative Works, in at least one
|
||||
of the following places: within a NOTICE text file distributed
|
||||
as part of the Derivative Works; within the Source form or
|
||||
documentation, if provided along with the Derivative Works; or,
|
||||
within a display generated by the Derivative Works, if and
|
||||
wherever such third-party notices normally appear. The contents
|
||||
of the NOTICE file are for informational purposes only and
|
||||
do not modify the License. You may add Your own attribution
|
||||
notices within Derivative Works that You distribute, alongside
|
||||
or as an addendum to the NOTICE text from the Work, provided
|
||||
that such additional attribution notices cannot be construed
|
||||
as modifying the License.
|
||||
|
||||
You may add Your own copyright statement to Your modifications and
|
||||
may provide additional or different license terms and conditions
|
||||
for use, reproduction, or distribution of Your modifications, or
|
||||
for any such Derivative Works as a whole, provided Your use,
|
||||
reproduction, and distribution of the Work otherwise complies with
|
||||
the conditions stated in this License.
|
||||
|
||||
5. Submission of Contributions. Unless You explicitly state otherwise,
|
||||
any Contribution intentionally submitted for inclusion in the Work
|
||||
by You to the Licensor shall be under the terms and conditions of
|
||||
this License, without any additional terms or conditions.
|
||||
Notwithstanding the above, nothing herein shall supersede or modify
|
||||
the terms of any separate license agreement you may have executed
|
||||
with Licensor regarding such Contributions.
|
||||
|
||||
6. Trademarks. This License does not grant permission to use the trade
|
||||
names, trademarks, service marks, or product names of the Licensor,
|
||||
except as required for reasonable and customary use in describing the
|
||||
origin of the Work and reproducing the content of the NOTICE file.
|
||||
|
||||
7. Disclaimer of Warranty. Unless required by applicable law or
|
||||
agreed to in writing, Licensor provides the Work (and each
|
||||
Contributor provides its Contributions) on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
||||
implied, including, without limitation, any warranties or conditions
|
||||
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
||||
PARTICULAR PURPOSE. You are solely responsible for determining the
|
||||
appropriateness of using or redistributing the Work and assume any
|
||||
risks associated with Your exercise of permissions under this License.
|
||||
|
||||
8. Limitation of Liability. In no event and under no legal theory,
|
||||
whether in tort (including negligence), contract, or otherwise,
|
||||
unless required by applicable law (such as deliberate and grossly
|
||||
negligent acts) or agreed to in writing, shall any Contributor be
|
||||
liable to You for damages, including any direct, indirect, special,
|
||||
incidental, or consequential damages of any character arising as a
|
||||
result of this License or out of the use or inability to use the
|
||||
Work (including but not limited to damages for loss of goodwill,
|
||||
work stoppage, computer failure or malfunction, or any and all
|
||||
other commercial damages or losses), even if such Contributor
|
||||
has been advised of the possibility of such damages.
|
||||
|
||||
9. Accepting Warranty or Additional Liability. While redistributing
|
||||
the Work or Derivative Works thereof, You may choose to offer,
|
||||
and charge a fee for, acceptance of support, warranty, indemnity,
|
||||
or other liability obligations and/or rights consistent with this
|
||||
License. However, in accepting such obligations, You may act only
|
||||
on Your own behalf and on Your sole responsibility, not on behalf
|
||||
of any other Contributor, and only if You agree to indemnify,
|
||||
defend, and hold each Contributor harmless for any liability
|
||||
incurred by, or claims asserted against, such Contributor by reason
|
||||
of your accepting any such warranty or additional liability.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
||||
|
||||
APPENDIX: How to apply the Apache License to your work.
|
||||
|
||||
To apply the Apache License to your work, attach the following
|
||||
boilerplate notice, with the fields enclosed by brackets "[]"
|
||||
replaced with your own identifying information. (Don't include
|
||||
the brackets!) The text should be enclosed in the appropriate
|
||||
comment syntax for the file format. We also recommend that a
|
||||
file or class name and description of purpose be included on the
|
||||
same "printed page" as the copyright notice for easier
|
||||
identification within third-party archives.
|
||||
|
||||
Copyright 2022 The Hugo Authors.
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
|
290
README.md
Normal file
290
README.md
Normal file
@ -0,0 +1,290 @@
|
||||
[bep]: https://github.com/bep
|
||||
[bugs]: https://github.com/gohugoio/hugo/issues?q=is%3Aopen+is%3Aissue+label%3ABug
|
||||
[contributing]: CONTRIBUTING.md
|
||||
[create a proposal]: https://github.com/gohugoio/hugo/issues/new?labels=Proposal%2C+NeedsTriage&template=feature_request.md
|
||||
[documentation repository]: https://github.com/gohugoio/hugoDocs
|
||||
[documentation]: https://gohugo.io/documentation
|
||||
[dragonfly bsd, freebsd, netbsd, and openbsd]: https://gohugo.io/installation/bsd
|
||||
[forum]: https://discourse.gohugo.io
|
||||
[friends]: https://github.com/gohugoio/hugo/graphs/contributors
|
||||
[go]: https://go.dev/
|
||||
[hugo modules]: https://gohugo.io/hugo-modules/
|
||||
[installation]: https://gohugo.io/installation
|
||||
[issue queue]: https://github.com/gohugoio/hugo/issues
|
||||
[linux]: https://gohugo.io/installation/linux
|
||||
[macos]: https://gohugo.io/installation/macos
|
||||
[prebuilt binary]: https://github.com/gohugoio/hugo/releases/latest
|
||||
[requesting help]: https://discourse.gohugo.io/t/requesting-help/9132
|
||||
[spf13]: https://github.com/spf13
|
||||
[static site generator]: https://en.wikipedia.org/wiki/Static_site_generator
|
||||
[support]: https://discourse.gohugo.io
|
||||
[themes]: https://themes.gohugo.io/
|
||||
[twitter]: https://twitter.com/gohugoio
|
||||
[website]: https://gohugo.io
|
||||
[windows]: https://gohugo.io/installation/windows
|
||||
|
||||
<a href="https://gohugo.io/"><img src="https://raw.githubusercontent.com/gohugoio/gohugoioTheme/master/static/images/hugo-logo-wide.svg?sanitize=true" alt="Hugo" width="565"></a>
|
||||
|
||||
A fast and flexible static site generator built with love by [bep], [spf13], and [friends] in [Go].
|
||||
|
||||
---
|
||||
|
||||
[](https://godoc.org/github.com/gohugoio/hugo)
|
||||
[](https://github.com/gohugoio/hugo/actions?query=workflow%3ATest)
|
||||
[](https://goreportcard.com/report/github.com/gohugoio/hugo)
|
||||
|
||||
[Website] | [Installation] | [Documentation] | [Support] | [Contributing] | [Twitter]
|
||||
|
||||
## Overview
|
||||
|
||||
Hugo is a [static site generator] written in [Go], optimized for speed and designed for flexibility. With its advanced templating system and fast asset pipelines, Hugo renders a complete site in seconds, often less.
|
||||
|
||||
Due to its flexible framework, multilingual support, and powerful taxonomy system, Hugo is widely used to create:
|
||||
|
||||
- Corporate, government, nonprofit, education, news, event, and project sites
|
||||
- Documentation sites
|
||||
- Image portfolios
|
||||
- Landing pages
|
||||
- Business, professional, and personal blogs
|
||||
- Resumes and CVs
|
||||
|
||||
Use Hugo's embedded web server during development to instantly see changes to content, structure, behavior, and presentation. Then deploy the site to your host, or push changes to your Git provider for automated builds and deployment.
|
||||
|
||||
Hugo's fast asset pipelines include:
|
||||
|
||||
- CSS bundling – transpilation (Sass), tree shaking, minification, source maps, SRI hashing, and PostCSS integration
|
||||
- JavaScript bundling – transpilation (TypeScript, JSX), tree shaking, minification, source maps, and SRI hashing
|
||||
- Image processing – convert, resize, crop, rotate, adjust colors, apply filters, overlay text and images, and extract EXIF data
|
||||
|
||||
And with [Hugo Modules], you can share content, assets, data, translations, themes, templates, and configuration with other projects via public or private Git repositories.
|
||||
|
||||
## Sponsors
|
||||
|
||||
<p> </p>
|
||||
<p float="left">
|
||||
<a href="https://www.linode.com/?utm_campaign=hugosponsor&utm_medium=banner&utm_source=hugogithub" target="_blank"><img src="https://raw.githubusercontent.com/gohugoio/gohugoioTheme/master/assets/images/sponsors/linode-logo_standard_light_medium.png" width="200" alt="Linode"></a>
|
||||
<a href="https://cloudcannon.com/hugo-cms/?utm_campaign=HugoSponsorship&utm_source=sponsor&utm_content=gohugo" target="_blank"><img src="https://raw.githubusercontent.com/gohugoio/gohugoioTheme/master/assets/images/sponsors/cloudcannon-blue.svg" width="220" alt="CloudCannon"></a>
|
||||
<p> </p>
|
||||
|
||||
## Installation
|
||||
|
||||
Install Hugo from a [prebuilt binary], package manager, or package repository. Please see the installation instructions for your operating system:
|
||||
|
||||
- [macOS]
|
||||
- [Linux]
|
||||
- [Windows]
|
||||
- [DragonFly BSD, FreeBSD, NetBSD, and OpenBSD]
|
||||
|
||||
## Build from source
|
||||
|
||||
Hugo is available in two editions: standard and extended. With the extended edition you can:
|
||||
|
||||
- Encode to the WebP format when processing images. You can decode WebP images with either edition.
|
||||
- Transpile Sass to CSS using the embedded LibSass transpiler. The extended edition is not required to use the Dart Sass transpiler.
|
||||
|
||||
Prerequisites to build Hugo from source:
|
||||
|
||||
- Standard edition: Go 1.19 or later
|
||||
- Extended edition: Go 1.19 or later, and GCC
|
||||
|
||||
Build the standard edition:
|
||||
|
||||
```text
|
||||
go install github.com/gohugoio/hugo@latest
|
||||
```
|
||||
|
||||
Build the extended edition:
|
||||
|
||||
```text
|
||||
CGO_ENABLED=1 go install -tags extended github.com/gohugoio/hugo@latest
|
||||
```
|
||||
|
||||
## Documentation
|
||||
|
||||
Hugo's [documentation] includes installation instructions, a quick start guide, conceptual explanations, reference information, and examples.
|
||||
|
||||
Please submit documentation issues and pull requests to the [documentation repository].
|
||||
|
||||
## Support
|
||||
|
||||
Please **do not use the issue queue** for questions or troubleshooting. Unless you are certain that your issue is a software defect, use the [forum].
|
||||
|
||||
Hugo’s [forum] is an active community of users and developers who answer questions, share knowledge, and provide examples. A quick search of over 20,000 topics will often answer your question. Please be sure to read about [requesting help] before asking your first question.
|
||||
|
||||
## Contributing
|
||||
|
||||
You can contribute to the Hugo project by:
|
||||
|
||||
- Answering questions on the [forum]
|
||||
- Improving the [documentation]
|
||||
- Monitoring the [issue queue]
|
||||
- Creating or improving [themes]
|
||||
- Squashing [bugs]
|
||||
|
||||
Please submit documentation issues and pull requests to the [documentation repository].
|
||||
|
||||
If you have an idea for an enhancement or new feature, create a new topic on the [forum] in the "Feature" category. This will help you to:
|
||||
|
||||
- Determine if the capability already exists
|
||||
- Measure interest
|
||||
- Refine the concept
|
||||
|
||||
If there is sufficient interest, [create a proposal]. Do not submit a pull request until the project lead accepts the proposal.
|
||||
|
||||
For a complete guide to contributing to Hugo, see the [Contribution Guide](CONTRIBUTING.md).
|
||||
|
||||
## Dependencies
|
||||
|
||||
Hugo stands on the shoulders of great open source libraries. Run `hugo env --logLevel info` to display a list of dependencies.
|
||||
|
||||
<details>
|
||||
<summary>See current dependencies</summary>
|
||||
|
||||
```text
|
||||
cloud.google.com/go/compute/metadata="v0.2.3"
|
||||
cloud.google.com/go/iam="v1.1.0"
|
||||
cloud.google.com/go/storage="v1.30.1"
|
||||
cloud.google.com/go="v0.110.2"
|
||||
github.com/Azure/azure-sdk-for-go/sdk/azcore="v1.6.1"
|
||||
github.com/Azure/azure-sdk-for-go/sdk/azidentity="v1.3.0"
|
||||
github.com/Azure/azure-sdk-for-go/sdk/internal="v1.3.0"
|
||||
github.com/Azure/azure-sdk-for-go/sdk/storage/azblob="v1.0.0"
|
||||
github.com/Azure/go-autorest/autorest/to="v0.4.0"
|
||||
github.com/AzureAD/microsoft-authentication-library-for-go="v1.0.0"
|
||||
github.com/BurntSushi/locker="v0.0.0-20171006230638-a6e239ea1c69"
|
||||
github.com/PuerkitoBio/purell="v1.1.1"
|
||||
github.com/PuerkitoBio/urlesc="v0.0.0-20170810143723-de5bf2ad4578"
|
||||
github.com/alecthomas/chroma/v2="v2.7.0"
|
||||
github.com/armon/go-radix="v1.0.0"
|
||||
github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream="v1.4.10"
|
||||
github.com/aws/aws-sdk-go-v2/config="v1.18.27"
|
||||
github.com/aws/aws-sdk-go-v2/credentials="v1.13.26"
|
||||
github.com/aws/aws-sdk-go-v2/feature/ec2/imds="v1.13.4"
|
||||
github.com/aws/aws-sdk-go-v2/feature/s3/manager="v1.11.70"
|
||||
github.com/aws/aws-sdk-go-v2/internal/configsources="v1.1.34"
|
||||
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2="v2.4.28"
|
||||
github.com/aws/aws-sdk-go-v2/internal/ini="v1.3.35"
|
||||
github.com/aws/aws-sdk-go-v2/internal/v4a="v1.0.26"
|
||||
github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding="v1.9.11"
|
||||
github.com/aws/aws-sdk-go-v2/service/internal/checksum="v1.1.29"
|
||||
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url="v1.9.28"
|
||||
github.com/aws/aws-sdk-go-v2/service/internal/s3shared="v1.14.3"
|
||||
github.com/aws/aws-sdk-go-v2/service/s3="v1.35.0"
|
||||
github.com/aws/aws-sdk-go-v2/service/sso="v1.12.12"
|
||||
github.com/aws/aws-sdk-go-v2/service/ssooidc="v1.14.12"
|
||||
github.com/aws/aws-sdk-go-v2/service/sts="v1.19.2"
|
||||
github.com/aws/aws-sdk-go-v2="v1.18.1"
|
||||
github.com/aws/aws-sdk-go="v1.44.284"
|
||||
github.com/aws/smithy-go="v1.13.5"
|
||||
github.com/bep/clocks="v0.5.0"
|
||||
github.com/bep/debounce="v1.2.0"
|
||||
github.com/bep/gitmap="v1.1.2"
|
||||
github.com/bep/goat="v0.5.0"
|
||||
github.com/bep/godartsass/v2="v2.0.0"
|
||||
github.com/bep/godartsass="v1.2.0"
|
||||
github.com/bep/golibsass="v1.1.1"
|
||||
github.com/bep/gowebp="v0.2.0"
|
||||
github.com/bep/lazycache="v0.2.0"
|
||||
github.com/bep/logg="v0.2.0"
|
||||
github.com/bep/mclib="v1.20400.20402"
|
||||
github.com/bep/overlayfs="v0.6.0"
|
||||
github.com/bep/simplecobra="v0.3.2"
|
||||
github.com/bep/tmc="v0.5.1"
|
||||
github.com/clbanning/mxj/v2="v2.5.7"
|
||||
github.com/cli/safeexec="v1.0.1"
|
||||
github.com/cpuguy83/go-md2man/v2="v2.0.2"
|
||||
github.com/disintegration/gift="v1.2.1"
|
||||
github.com/dlclark/regexp2="v1.10.0"
|
||||
github.com/dustin/go-humanize="v1.0.1"
|
||||
github.com/evanw/esbuild="v0.18.5"
|
||||
github.com/fatih/color="v1.15.0"
|
||||
github.com/frankban/quicktest="v1.14.5"
|
||||
github.com/fsnotify/fsnotify="v1.6.0"
|
||||
github.com/getkin/kin-openapi="v0.118.0"
|
||||
github.com/ghodss/yaml="v1.0.0"
|
||||
github.com/go-openapi/jsonpointer="v0.19.6"
|
||||
github.com/go-openapi/swag="v0.22.3"
|
||||
github.com/gobuffalo/flect="v1.0.2"
|
||||
github.com/gobwas/glob="v0.2.3"
|
||||
github.com/gohugoio/go-i18n/v2="v2.1.3-0.20210430103248-4c28c89f8013"
|
||||
github.com/gohugoio/locales="v0.14.0"
|
||||
github.com/gohugoio/localescompressed="v1.0.1"
|
||||
github.com/golang-jwt/jwt/v4="v4.5.0"
|
||||
github.com/golang/groupcache="v0.0.0-20210331224755-41bb18bfe9da"
|
||||
github.com/golang/protobuf="v1.5.3"
|
||||
github.com/google/go-cmp="v0.5.9"
|
||||
github.com/google/s2a-go="v0.1.4"
|
||||
github.com/google/uuid="v1.3.0"
|
||||
github.com/google/wire="v0.5.0"
|
||||
github.com/googleapis/enterprise-certificate-proxy="v0.2.5"
|
||||
github.com/googleapis/gax-go/v2="v2.11.0"
|
||||
github.com/gorilla/websocket="v1.5.0"
|
||||
github.com/hairyhenderson/go-codeowners="v0.3.0"
|
||||
github.com/hashicorp/golang-lru/v2="v2.0.1"
|
||||
github.com/invopop/yaml="v0.1.0"
|
||||
github.com/jdkato/prose="v1.2.1"
|
||||
github.com/jmespath/go-jmespath="v0.4.0"
|
||||
github.com/josharian/intern="v1.0.0"
|
||||
github.com/kr/pretty="v0.3.1"
|
||||
github.com/kr/text="v0.2.0"
|
||||
github.com/kylelemons/godebug="v1.1.0"
|
||||
github.com/kyokomi/emoji/v2="v2.2.12"
|
||||
github.com/mailru/easyjson="v0.7.7"
|
||||
github.com/marekm4/color-extractor="v1.2.0"
|
||||
github.com/mattn/go-colorable="v0.1.13"
|
||||
github.com/mattn/go-isatty="v0.0.19"
|
||||
github.com/mattn/go-runewidth="v0.0.9"
|
||||
github.com/mitchellh/hashstructure="v1.1.0"
|
||||
github.com/mitchellh/mapstructure="v1.5.0"
|
||||
github.com/mohae/deepcopy="v0.0.0-20170929034955-c48cc78d4826"
|
||||
github.com/muesli/smartcrop="v0.3.0"
|
||||
github.com/niklasfasching/go-org="v1.7.0"
|
||||
github.com/olekukonko/tablewriter="v0.0.5"
|
||||
github.com/pelletier/go-toml/v2="v2.0.8"
|
||||
github.com/perimeterx/marshmallow="v1.1.4"
|
||||
github.com/pkg/browser="v0.0.0-20210911075715-681adbf594b8"
|
||||
github.com/pkg/errors="v0.9.1"
|
||||
github.com/rogpeppe/go-internal="v1.10.1-0.20230508101108-a4f6fabd84c5"
|
||||
github.com/russross/blackfriday/v2="v2.1.0"
|
||||
github.com/rwcarlsen/goexif="v0.0.0-20190401172101-9e8deecbddbd"
|
||||
github.com/sanity-io/litter="v1.5.5"
|
||||
github.com/sass/dart-sass/compiler="1.63.6"
|
||||
github.com/sass/dart-sass/implementation="1.63.6"
|
||||
github.com/sass/dart-sass/protocol="2.1.0"
|
||||
github.com/sass/libsass="3.6.5"
|
||||
github.com/spf13/afero="v1.9.5"
|
||||
github.com/spf13/cast="v1.5.1"
|
||||
github.com/spf13/cobra="v1.7.0"
|
||||
github.com/spf13/fsync="v0.9.0"
|
||||
github.com/spf13/pflag="v1.0.5"
|
||||
github.com/tdewolff/minify/v2="v2.12.7"
|
||||
github.com/tdewolff/parse/v2="v2.6.6"
|
||||
github.com/webmproject/libwebp="v1.2.4"
|
||||
github.com/yuin/goldmark="v1.5.4"
|
||||
go.opencensus.io="v0.24.0"
|
||||
go.uber.org/atomic="v1.11.0"
|
||||
go.uber.org/automaxprocs="v1.5.2"
|
||||
gocloud.dev="v0.30.0"
|
||||
golang.org/x/crypto="v0.10.0"
|
||||
golang.org/x/exp="v0.0.0-20230321023759-10a507213a29"
|
||||
golang.org/x/image="v0.8.0"
|
||||
golang.org/x/mod="v0.10.0"
|
||||
golang.org/x/net="v0.11.0"
|
||||
golang.org/x/oauth2="v0.9.0"
|
||||
golang.org/x/sync="v0.3.0"
|
||||
golang.org/x/sys="v0.9.0"
|
||||
golang.org/x/text="v0.10.0"
|
||||
golang.org/x/tools="v0.9.3"
|
||||
golang.org/x/xerrors="v0.0.0-20220907171357-04be3eba64a2"
|
||||
google.golang.org/api="v0.128.0"
|
||||
google.golang.org/appengine="v1.6.7"
|
||||
google.golang.org/genproto/googleapis/api="v0.0.0-20230530153820-e85fd2cbaebc"
|
||||
google.golang.org/genproto/googleapis/rpc="v0.0.0-20230530153820-e85fd2cbaebc"
|
||||
google.golang.org/genproto="v0.0.0-20230530153820-e85fd2cbaebc"
|
||||
google.golang.org/grpc="v1.56.0"
|
||||
google.golang.org/protobuf="v1.30.0"
|
||||
gopkg.in/yaml.v2="v2.4.0"
|
||||
gopkg.in/yaml.v3="v3.0.1"
|
||||
software.sslmate.com/src/go-pkcs12="v0.2.0"
|
||||
```
|
||||
</details>
|
BIN
assets/fonts/Lato/Lato-Black.ttf
Normal file
BIN
assets/fonts/Lato/Lato-Black.ttf
Normal file
Binary file not shown.
BIN
assets/fonts/Lato/Lato-BlackItalic.ttf
Normal file
BIN
assets/fonts/Lato/Lato-BlackItalic.ttf
Normal file
Binary file not shown.
BIN
assets/fonts/Lato/Lato-Bold.ttf
Normal file
BIN
assets/fonts/Lato/Lato-Bold.ttf
Normal file
Binary file not shown.
BIN
assets/fonts/Lato/Lato-BoldItalic.ttf
Normal file
BIN
assets/fonts/Lato/Lato-BoldItalic.ttf
Normal file
Binary file not shown.
BIN
assets/fonts/Lato/Lato-Italic.ttf
Normal file
BIN
assets/fonts/Lato/Lato-Italic.ttf
Normal file
Binary file not shown.
BIN
assets/fonts/Lato/Lato-Light.ttf
Normal file
BIN
assets/fonts/Lato/Lato-Light.ttf
Normal file
Binary file not shown.
BIN
assets/fonts/Lato/Lato-LightItalic.ttf
Normal file
BIN
assets/fonts/Lato/Lato-LightItalic.ttf
Normal file
Binary file not shown.
BIN
assets/fonts/Lato/Lato-Regular.ttf
Normal file
BIN
assets/fonts/Lato/Lato-Regular.ttf
Normal file
Binary file not shown.
BIN
assets/fonts/Lato/Lato-Thin.ttf
Normal file
BIN
assets/fonts/Lato/Lato-Thin.ttf
Normal file
Binary file not shown.
BIN
assets/fonts/Lato/Lato-ThinItalic.ttf
Normal file
BIN
assets/fonts/Lato/Lato-ThinItalic.ttf
Normal file
Binary file not shown.
93
assets/fonts/Lato/OFL.txt
Normal file
93
assets/fonts/Lato/OFL.txt
Normal file
@ -0,0 +1,93 @@
|
||||
Copyright (c) 2010-2014 by tyPoland Lukasz Dziedzic (team@latofonts.com) with Reserved Font Name "Lato"
|
||||
|
||||
This Font Software is licensed under the SIL Open Font License, Version 1.1.
|
||||
This license is copied below, and is also available with a FAQ at:
|
||||
https://openfontlicense.org
|
||||
|
||||
|
||||
-----------------------------------------------------------
|
||||
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
|
||||
-----------------------------------------------------------
|
||||
|
||||
PREAMBLE
|
||||
The goals of the Open Font License (OFL) are to stimulate worldwide
|
||||
development of collaborative font projects, to support the font creation
|
||||
efforts of academic and linguistic communities, and to provide a free and
|
||||
open framework in which fonts may be shared and improved in partnership
|
||||
with others.
|
||||
|
||||
The OFL allows the licensed fonts to be used, studied, modified and
|
||||
redistributed freely as long as they are not sold by themselves. The
|
||||
fonts, including any derivative works, can be bundled, embedded,
|
||||
redistributed and/or sold with any software provided that any reserved
|
||||
names are not used by derivative works. The fonts and derivatives,
|
||||
however, cannot be released under any other type of license. The
|
||||
requirement for fonts to remain under this license does not apply
|
||||
to any document created using the fonts or their derivatives.
|
||||
|
||||
DEFINITIONS
|
||||
"Font Software" refers to the set of files released by the Copyright
|
||||
Holder(s) under this license and clearly marked as such. This may
|
||||
include source files, build scripts and documentation.
|
||||
|
||||
"Reserved Font Name" refers to any names specified as such after the
|
||||
copyright statement(s).
|
||||
|
||||
"Original Version" refers to the collection of Font Software components as
|
||||
distributed by the Copyright Holder(s).
|
||||
|
||||
"Modified Version" refers to any derivative made by adding to, deleting,
|
||||
or substituting -- in part or in whole -- any of the components of the
|
||||
Original Version, by changing formats or by porting the Font Software to a
|
||||
new environment.
|
||||
|
||||
"Author" refers to any designer, engineer, programmer, technical
|
||||
writer or other person who contributed to the Font Software.
|
||||
|
||||
PERMISSION & CONDITIONS
|
||||
Permission is hereby granted, free of charge, to any person obtaining
|
||||
a copy of the Font Software, to use, study, copy, merge, embed, modify,
|
||||
redistribute, and sell modified and unmodified copies of the Font
|
||||
Software, subject to the following conditions:
|
||||
|
||||
1) Neither the Font Software nor any of its individual components,
|
||||
in Original or Modified Versions, may be sold by itself.
|
||||
|
||||
2) Original or Modified Versions of the Font Software may be bundled,
|
||||
redistributed and/or sold with any software, provided that each copy
|
||||
contains the above copyright notice and this license. These can be
|
||||
included either as stand-alone text files, human-readable headers or
|
||||
in the appropriate machine-readable metadata fields within text or
|
||||
binary files as long as those fields can be easily viewed by the user.
|
||||
|
||||
3) No Modified Version of the Font Software may use the Reserved Font
|
||||
Name(s) unless explicit written permission is granted by the corresponding
|
||||
Copyright Holder. This restriction only applies to the primary font name as
|
||||
presented to the users.
|
||||
|
||||
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
|
||||
Software shall not be used to promote, endorse or advertise any
|
||||
Modified Version, except to acknowledge the contribution(s) of the
|
||||
Copyright Holder(s) and the Author(s) or with their explicit written
|
||||
permission.
|
||||
|
||||
5) The Font Software, modified or unmodified, in part or in whole,
|
||||
must be distributed entirely under this license, and must not be
|
||||
distributed under any other license. The requirement for fonts to
|
||||
remain under this license does not apply to any document created
|
||||
using the Font Software.
|
||||
|
||||
TERMINATION
|
||||
This license becomes null and void if any of the above conditions are
|
||||
not met.
|
||||
|
||||
DISCLAIMER
|
||||
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
|
||||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
|
||||
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
|
||||
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
||||
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
|
||||
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
|
||||
OTHER DEALINGS IN THE FONT SOFTWARE.
|
@ -18,6 +18,14 @@ $text-green: #56c4aa;
|
||||
$red: #f0384d;
|
||||
$yellow: #fcc958;
|
||||
|
||||
@font-face {
|
||||
font-family: 'Lato', Arial;
|
||||
src: url('assets/fonts/Lato/Lato-Regular.ttf') format('truetype');
|
||||
font-display: optional;
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
// Pattern
|
||||
@mixin add-bg-pattern($id) {
|
||||
background-repeat: repeat;
|
||||
@ -66,11 +74,9 @@ $yellow: #fcc958;
|
||||
}
|
||||
|
||||
body{
|
||||
font-family: 'Lato', serif;
|
||||
font-family: 'Lato', sans-serif;
|
||||
.highlight {
|
||||
padding: .5rem;
|
||||
font-family: 'Trocchi', serif;
|
||||
font-size: 2rem;
|
||||
padding: .25rem;
|
||||
}
|
||||
.highlight-1 {
|
||||
background-color: $chill-green;
|
||||
@ -92,6 +98,21 @@ header.header {
|
||||
padding-top: 0rem;
|
||||
}
|
||||
|
||||
.navbar {
|
||||
.btn-primary {
|
||||
background-color: $orange;
|
||||
border: 1px solid $orange;
|
||||
color: white;
|
||||
&:hover {
|
||||
background-color: $chill-orange;
|
||||
border: 1px solid $chill-orange;
|
||||
}
|
||||
}
|
||||
.lang-select {
|
||||
color: white;
|
||||
}
|
||||
}
|
||||
|
||||
main > section {
|
||||
&.hero {
|
||||
height: 100vh;
|
||||
@ -104,6 +125,10 @@ main > section {
|
||||
background-color: $orange;
|
||||
color: white;
|
||||
border-color: $orange;
|
||||
&:hover {
|
||||
background-color: $chill-orange;
|
||||
border: 1px solid $chill-orange;
|
||||
}
|
||||
}
|
||||
}
|
||||
&.section-1 {
|
||||
@ -304,6 +329,16 @@ section {
|
||||
border-radius: 2em;
|
||||
}
|
||||
|
||||
.download {
|
||||
margin-right: auto;
|
||||
margin-left: auto;
|
||||
display: block;
|
||||
a {
|
||||
text-decoration: none;
|
||||
padding: .5rem;
|
||||
}
|
||||
}
|
||||
|
||||
// Dark but only in sections
|
||||
section.dark {
|
||||
p {
|
||||
@ -391,6 +426,10 @@ figure.image {
|
||||
figcaption {}
|
||||
}
|
||||
|
||||
.text-brochure {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
// RESPONSIVENESS
|
||||
|
||||
@media screen and (max-width: 1279px) {
|
||||
|
@ -1,9 +1,10 @@
|
||||
---
|
||||
title: CHILL - Open source software for the social worker
|
||||
banner:
|
||||
|
||||
class: dark
|
||||
image: /images/illustrations/hero-image.png
|
||||
title: A social worker's companion
|
||||
title: A social worker's digital companion
|
||||
content: >
|
||||
An open source web application dedicated to facilitating social work.
|
||||
bulletpoints:
|
||||
@ -20,10 +21,10 @@ features:
|
||||
title:
|
||||
content:
|
||||
bulletpoints:
|
||||
- Keep track of your day-to-day interactions
|
||||
- Search and share information about the people in your care
|
||||
- Communicate and interact with members of your team
|
||||
- Have access to statistics on your work at all times
|
||||
- Keep track of your day-to-day professional activities
|
||||
- Access to your files at all times
|
||||
- Communicate and interact easily with members of your team
|
||||
- Security and respect for the privacy of data
|
||||
button:
|
||||
enable: false
|
||||
label: Button label
|
||||
|
@ -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.
|
@ -6,7 +6,7 @@ description: Workflows allow you to phase more complex tasks without losing sigh
|
||||
comments: false
|
||||
---
|
||||
|
||||
## A streamlined workflow
|
||||
<h5 class="content-subtitle bord-1">A streamlined workflow</h5>
|
||||
|
||||
**For large teams**, Chill enables decisions to be tracked and validated within a hierarchy.
|
||||
|
||||
|
@ -1,8 +1,12 @@
|
||||
---
|
||||
title: en Brochure
|
||||
subtitle:
|
||||
title: Brochure
|
||||
description: Download, read, print, and share
|
||||
image:
|
||||
comments: false
|
||||
---
|
||||
|
||||
<p class="text-brochure">If you'd like to find out more about Chill, download the brochure here. Maybe even print and share it? ;-)</p>
|
||||
|
||||
<button class="btn-primary download">
|
||||
<a class="btn-primary" href="/Brochure_Chill_V9.zip">Download the brochure</a>
|
||||
</button>
|
||||
|
@ -22,4 +22,4 @@ The manual is also accessible via a link in the application footer.
|
||||
|
||||
<h5 class="content-subtitle bord-2">User trainings</h5>
|
||||
|
||||
Ask your Chill [provider](/get-chill/providers) to organize a Chill training day.
|
||||
Ask your Chill [provider](/en/get-chill/providers) to organize a Chill training day.
|
||||
|
@ -23,7 +23,7 @@ features:
|
||||
- Conservez les traces de vos interactions au quotidien
|
||||
- Recherchez et partagez les infos à propos des personnes que vous accompagnez
|
||||
- Communiquez pour interagir en équipe
|
||||
- Disposez à tout moment des statistiques
|
||||
- Sécurité et respect des données privées
|
||||
button:
|
||||
enable: false
|
||||
label: Button label
|
||||
|
@ -36,7 +36,13 @@ La documentation technique de Chill se trouve à l'adresse suivante: http://docs
|
||||
|
||||
Il existe un salon sur la messagerie Matrix, pour échanger avec les développeurs de Chill.
|
||||
|
||||
`#chill-social-admin:matrix.org`
|
||||
Pour le rejoindre cliquez sur le lien ci-dessous,
|
||||
|
||||
[#chill-social-admin:matrix.org](https://matrix.to/#/#chill-social-admin:matrix.org)
|
||||
|
||||
ou scannez le code qr
|
||||
|
||||
<img src="/images/chill-admin.png"/>
|
||||
|
||||
|
||||
<h5 class="content-subtitle bord-1">Contribuer, devenir prestataire</h5>
|
||||
|
@ -1,9 +1,12 @@
|
||||
---
|
||||
title: Brochure
|
||||
subtitle:
|
||||
description: À télécharger, imprimer et partager
|
||||
image:
|
||||
comments: false
|
||||
---
|
||||
|
||||
<p class="text-brochure">Si vous souhaitez en savoir plus sur Chill, téléchargez la brochure ici. Vous pouvez même l'imprimer et la partager ;-)</p>
|
||||
|
||||
Télécharger la brochure (PDF)
|
||||
<button class="btn-primary download">
|
||||
<a class="btn-primary" href="/Brochure_Chill_V9.zip">Télécharger la brochure</a>
|
||||
</button>
|
||||
|
@ -1,4 +1,5 @@
|
||||
---
|
||||
title: CHILL - open source software voor sociaal werkers
|
||||
banner:
|
||||
|
||||
class: dark
|
||||
@ -20,10 +21,10 @@ features:
|
||||
title:
|
||||
content:
|
||||
bulletpoints:
|
||||
- Houd je dagelijkse begeleidingsacties bij
|
||||
- Informatie zoeken en delen over de mensen die je begeleid
|
||||
- Je begeleidingsdossiers altijd bij de hand
|
||||
- Eenvoudige registratie van al je begleidingsactiviteiten
|
||||
- Communiceer en interageer met je teamgenoten
|
||||
- Op elk moment toegang tot statistieken
|
||||
- Veiligheid van gegevens en respect voor privacy
|
||||
button:
|
||||
enable: false
|
||||
label: Button label
|
||||
|
@ -1,6 +1,6 @@
|
||||
---
|
||||
title: Suivi des accompagnements
|
||||
subtitle: Parcours d'accompagnement
|
||||
title: Hulpverleningstrajecten
|
||||
subtitle: Hulpverleningstrajecten
|
||||
image:
|
||||
description: Maak één of meerdere hulpverleningsplannen voor een initiële probleemdiagnose en om ondernomen acties en geboekte vooruitgang op te volgen.
|
||||
comments: false
|
||||
@ -8,31 +8,31 @@ comments: false
|
||||
|
||||
<h5 class="content-subtitle bord-1"> De verschillende trajecten van gebruikers registreren</h5>
|
||||
|
||||
Gebruikers worden gevolgd als onderdeel van een **ondersteuningspad**.
|
||||
Gebruikers worden gevolgd aan de hand van een **hulpverleningstraject**.
|
||||
|
||||
Elke gebruiker kan meerdere trajecten hebben, afhankelijk van de verschillende verwijzers en/of de organisatie van de dienst.
|
||||
Elke gebruiker kan meerdere trajecten hebben, afhankelijk van de aanwezige problematieken de manier waaorp jouw dienst deze wenst op te volgen, binnen één traject of meerdere.
|
||||
|
||||
Op dezelfde manier kan een ondersteuningstraject meerdere gebruikers betreffen: het kan gaan om één gebruiker, een hele familie of een groep mensen.
|
||||
Een hulpverleningsstraject kan daarnaast ook meerdere gebruikers betreffen: het kan gaan om één gebruiker, een hele familie of een groep mensen.
|
||||
|
||||
<h5 class="content-subtitle bord-2">Karakterisering van trajecten</h5>
|
||||
|
||||
De trajecten worden geassocieerd met **sociale kwesties**: ze geven aan "wat aan bod komt" in het traject.
|
||||
De trajecten worden geassocieerd met één of meerdere **problematieken**: deze geven aan wat de hulpverleningsvraag is van een persoon en bijgevolg "waar aan gewerkt wordt" binnen het traject.
|
||||
|
||||
Het traject kan zich ook in de ruimte bevinden: in de buurt van het huis van een gebruiker of een willekeurig adres, en/of een locatie in de buurt van een dienst.
|
||||
Naast de problematieken kunnen tal van andere gegevens binnen het traject worden geregistreerd, bijvoorbeeld waar de hulpverlening plaatsvindt (bij de persoon thuis, binnen de instelling,..)
|
||||
|
||||
Het is ook mogelijk om een aanvrager, de oorsprong, de openingsdatum van het pad, enz. in te voeren.
|
||||
wie de aanvrager is, wie de individuele begleider is, wanneer het traject van start is gegaan, welke andere personen en/of externe partners erbij betrokken zijn enz...
|
||||
|
||||
<h5 class="content-subtitle bord-3">Uitwisselingen registreren</h5>
|
||||
<h5 class="content-subtitle bord-3">Hulpverleningsactiviteiten registreren</h5>
|
||||
|
||||
Elke uitwisseling met de gebruiker kan worden aangegeven in het pad, zodat het mogelijk is om de geschiedenis en de inhoud van deze verschillende momenten te kennen.
|
||||
Binnen elk traject kunnen al de uitwisselingen met de persoon/personen worden geregistreerd. Zo is er altijd een geschiedenis beschikbaar van wat binnen het traject werd ondernomen.
|
||||
|
||||
Gebruikers kunnen verschillende soorten uitwisselingen registreren: afspraken thuis, gesprekken in de salon, een eenvoudig gesprek of vergaderingen. Deze soorten uitwisselingen worden geconfigureerd door de beheerders, die ook de vereiste formuliervelden voor elk type kunnen activeren of deactiveren.
|
||||
Gebruikers kunnen verschillende soorten uitwisselingen registreren: afspraken thuis, gesprekken op bureau, vergaderingen omtrent het traject, enz... Deze soorten uitwisselingen kunnen volledig geconfigureerd worden door de beheerders.
|
||||
|
||||
<h5 class="content-subtitle bord-4">Lijst van uitgevoerde acties</h5>
|
||||
|
||||
De verschillende uitwisselingen maken het mogelijk om ondersteuningsacties op te bouwen: werken aan een cv, een bijstandsaanvraag indienen, een follow-up opzetten, enz.
|
||||
Uitwisseling binnen het traject dienen daarnaast natuurlijk om bepaalde hulpverleningsacties uit te stippelen: werken aan een cv, een bijstandsaanvraag indienen, follow-up door psycholoog opzetten, enz.
|
||||
|
||||
Voor elke actie is het mogelijk om documenten te koppelen of te genereren: resultaten van CV-werk, sociale mandaatdocumenten, enz. Het is zelfs mogelijk om vooraf ingevulde hulpaanvraagformulieren te genereren!
|
||||
Aan elke actie kunnen documenten worden gekoppeld waarvan vaak gebruikte documenten ook automatisch kunnen worden gegenereerd: aanvraag OCMW, inschrijving school, enz.
|
||||
|
||||
De doelstellingen en resultaten van elke actie kunnen ook worden ingevoerd.
|
||||
Vervolgens kunnen ook doelstellingen en de bereikte resultaten worden geregistreerd.
|
||||
|
||||
|
@ -12,5 +12,4 @@ Hiervoor maakt de applicatie gebruik van sjablonen die specifiek voor jouw organ
|
||||
Sjablonen kunnen gaan van een eenvoudig aanwezigheidscertificaat tot complexe aanvraagformulieren en de informatie die vooraf wordt ingevuld kan gaan van
|
||||
de naam van een persoon tot complexere gegevens over het huishoudbudget.
|
||||
|
||||
De sjablonen moeten eenmalig geconfigureerd worden, maar een van de serviceproviders van Chill kan uw organisatie hierbij helpen.
|
||||
organisatie hierbij te helpen.
|
||||
De sjablonen moeten eenmalig geconfigureerd worden, maar een van de [serviceproviders](/nl/get-chill/providers) van Chill kan uw organisatie hierbij zeker helpen.
|
||||
|
@ -11,7 +11,7 @@ Cijfers zijn zeker niet de core business van de sociaal werker, maar ze zijn vaa
|
||||
Chill maakt het samenstellen van deze rapportage een stuk lichter.
|
||||
|
||||
De toepassing biedt de mogelijkheid om statistieken te exporteren voor al haar entiteiten, of het nu gaat om persoonsdossiers, de hulpverleningsactiviteiten, huishouddossiers,
|
||||
afspraken, sociale acties,...
|
||||
afspraken, hulpverleningsacties,...
|
||||
Een brede waaier aan parameters laat je toe om gegevens te filteren of te groeperen zodat ze meteen bruikbaar zijn voor je rapporten.
|
||||
|
||||
Een extra troef van deze module is de export van lijsten van personen of hulpverleningstrajecten,
|
||||
|
@ -8,40 +8,40 @@ comments: false
|
||||
|
||||
<h5 class="content-subtitle bord-1">Basisinformatie verzamelen</h5>
|
||||
|
||||
Elke gebruiker heeft **zijn of haar eigen bestand**. Het bevat "basis"-informatie: voor- en achternaam, geboortedatum, contactgegevens, enz.
|
||||
Elke gebruiker heeft **zijn of haar eigen dossier**. Dit dossier bevat telkens "basis"-informatie: voor- en achternaam, geboortedatum, contactgegevens, enz.
|
||||
|
||||
Het is mogelijk om meerdere **telefoonnummers** in te voeren, maar ook om vrije contactgegevens in te voeren.
|
||||
die vaak bij een eerste intake worden geregistreerd.
|
||||
|
||||
<h5 class="content-subtitle bord-2">Koppel de gebruiker aan een huishouden</h5>
|
||||
|
||||
Met Chill kun je elke gebruiker aan een huishouden koppelen.
|
||||
Met Chill kan je elke gebruiker aan een huishouden koppelen. Dit betreft niet noodzakelijk een gezin, maar ook andere samenstellingen.
|
||||
|
||||
Er wordt een **geschiedenis** van het lidmaatschap van een huishouden bijgehouden, zodat het mogelijk is om voormalige leden van het huishouden terug te vinden.
|
||||
Relaties tussen bewoners kunnen grafisch worden aangegeven. Daarnaast kunnen ook huishoudensbudgetten worden bijgehouden, een verhuisgeschiedenis,
|
||||
|
||||
Heeft een huishouden kinderen met wisselende voogdij? Af en toe leden? Deze informatie kan ook worden ingevoerd.
|
||||
of het huishouden kinderen bevat met of zonder wisselende voogdij? Zodoende kan de exacte samenstelling en evolutie binnen een huishouden worden bijgehouden.
|
||||
|
||||
<h5 class="content-subtitle bord-3">Voer het budget van de gebruiker in</h5>
|
||||
<h5 class="content-subtitle bord-3">Persoonlijke budgetbegeleiding</h5>
|
||||
|
||||
In Chill kun je de budgetgegevens van de gebruiker en het huishouden invoeren: maandelijkse inkomsten en uitgaven.
|
||||
In Chill kunnen budgetgegevens ook op het niveau van het individu worden geregistreerd voor een eenvoudige budgetbegleiding.
|
||||
|
||||
De "soorten uitgaven" en "soorten inkomsten" kunnen **geconfigureerd worden door een beheerder**: salarisinkomen, huur, elektriciteit, enz.
|
||||
|
||||
Elke regel in dit budget is gehistoriseerd, zodat oude gegevens bewaard kunnen blijven.
|
||||
De soorten "uitgaven" en "inkomsten" kunnen **geconfigureerd worden door een beheerder**: salarisinkomen, huur, elektriciteit, enz.
|
||||
|
||||
<h5 class="content-subtitle bord-4">Mensen of derden registreren als "hulpbronnen</h5>
|
||||
|
||||
Met Chill kun je mensen of derden registreren als "resources": dokters, buren, vertalers, naaste familieleden, enz.
|
||||
Om het netwerk van een persoon in kaart te brengen kunnen ook steunfiguren en externe professionele partners worden geregistreerd.
|
||||
|
||||
Deze "resources" kunnen worden beschreven als vrije tekst of komen uit een database van derden die gezamenlijk wordt onderhouden. Het is ook mogelijk om andere gebruikers als "bronnen" op te nemen.
|
||||
Voor externe partners bestaat hiervoor ook een handig 'addressenboekje' die alle teamleden onmiddelijk toegang biedt tot een lijst van alle professionele partners van de organisatie, denk hierbij aan dokters, scholen, psychologen, OCMW medewerkers,...
|
||||
|
||||
<h5 class="content-subtitle bord-1">Documenten uploaden en genereren</h5>
|
||||
|
||||
Voor elke record kun je **verschillende documenten** uploaden: gescande identiteitsdocumenten, adresbewijzen, inkomende post, etc. Je kunt ook documenten van elke record genereren.
|
||||
Binnen elk dossier kun je **verschillende documenten** uploaden: gescande identiteitsdocumenten, inschrijvingsbewijzen, inkomende post, etc. Bepaalde documenten of formulieren die vaak worden gebruikt kan zelfs een automatische generatie worden geconfigureerd.
|
||||
|
||||
Het is ook mogelijk om documenten te genereren vanuit elk record. Dit maakt het mogelijk om **standaardbrieven** te genereren van gegevens die al in de software zijn opgeslagen.
|
||||
Deze worden dan volledig aangepast met de gegevens van de persoon in kwestie en zo hoef je dus nooit meer die OCMW aanvraag helemaal van nul in te vullen.
|
||||
|
||||
CHILL doet dit met plezier voor je en biedt je daarna de mogelijkheid om nog de nodige details aan te passen.
|
||||
|
||||
<h5 class="content-subtitle bord-2">Taken invoeren</h5>
|
||||
|
||||
Maatschappelijk werkers kunnen **taken die moeten worden uitgevoerd** vastleggen in het gebruikersdossier: contact opnemen met een advocaat, de persoon terugbellen de dag na de volgende operatie, enz.
|
||||
Teamleden kunnen voor elk dossier ook **taken** vastleggen. Een taak kan meteen aan de juiste collega worden toegekend en het aangeven van een 'einddatum'
|
||||
|
||||
Deze taken kunnen een vervaldatum hebben. Ze worden dan opgeroepen op de startpagina van de gebruiker.
|
||||
zorgt ervoor dat deze automatisch verwittigd zal worden bij het naderen van de vervaldatum.
|
||||
|
@ -7,7 +7,7 @@ comments: false
|
||||
|
||||
<h5 class="content-subtitle bord-1">Functies in ontwikkeling en toekomstige functies</h5>
|
||||
|
||||
Het ontwikkelingsteam heeft de verschillende functies gepubliceerd die momenteel in ontwikkeling zijn. De lijst is [hier](https://gitlab.com/Chill-Projet/chill-bundles/-/boards/7086313?label_name[]=kind%3A%3Afeature) beschikbaar.
|
||||
Het ontwikkelingsteam heeft de verschillende functies gepubliceerd die momenteel in ontwikkeling zijn. Die lijst is [hier](https://gitlab.com/Chill-Projet/chill-bundles/-/boards/7086313?label_name[]=kind%3A%3Afeature) beschikbaar.
|
||||
|
||||
Sommige functies bevinden zich in de 'idee'-fase, zonder details of financiering (zie de kolom 'idee' in de gegeven link).
|
||||
|
||||
@ -20,9 +20,11 @@ Zodra ze klaar zijn, vindt u deze functies in de aantekeningen bij [elke nieuwe
|
||||
|
||||
<h5 class="content-subtitle bord-2">Nieuwe functies toevoegen of financieren?</h5>
|
||||
|
||||
Chill is gefinancierd door eerdere ontwikkelingen in opdracht te geven: andere instellingen hebben ontwikkelaars betaald om functies toe te voegen. Je kunt ze vandaag al gebruiken!
|
||||
Chill is tot stand gekomen door ontwikkelingen die in opdracht van verschillende instellingen werden gedaan.
|
||||
|
||||
Champs-Libres, dat ook de ontwikkeling van de software ondersteunt, gebruikt een deel van zijn hostingomzet voor onderhoud en ontwikkeling.
|
||||
Zo ontstond een solidariteit tussen de verschillende organisaties die CHILL en mee genieten van de functionaliteiten die door elk van hen werden gefinancierd.
|
||||
|
||||
Champs-Libres, momenteel de voornaamste provider, gebruikt daarnaast ook een deel van zijn hostingomzet voor onderhoud en ontwikkeling.
|
||||
|
||||
Om bij te dragen aan de duurzaamheid en ontwikkeling van de software kun je
|
||||
|
||||
@ -30,8 +32,8 @@ Om bij te dragen aan de duurzaamheid en ontwikkeling van de software kun je
|
||||
- een functie financieren die aan uw behoeften voldoet
|
||||
- of een idee voor een nieuwe functie financieren waar je nog op wacht van een sponsor.
|
||||
|
||||
Is een functie te duur voor je? Aarzel niet om contact met ons op te nemen: uw behoeften komen waarschijnlijk overeen met die van andere instellingen. Het is mogelijk om grootschalige ontwikkelingen te delen met deze andere diensten: kleine stroompjes maken grote rivieren!
|
||||
|
||||
Is een functie te duur voor je? Aarzel niet om contact met ons op te nemen: uw behoeften komen waarschijnlijk overeen met die van andere instellingen.
|
||||
Het is mogelijk om grootschalige ontwikkelingen te delen met deze andere diensten: kleine stroompjes maken grote rivieren!
|
||||
|
||||
<h5 class="content-subtitle bord-3">Nieuwste functies ontwikkeld</h5>
|
||||
|
||||
|
@ -8,8 +8,6 @@ comments: false
|
||||
|
||||
**Voor grote teams** maakt Chill het mogelijk om beslissingen op te volgen en te valideren binnen een hiërarchie.
|
||||
|
||||
Het is mogelijk om paden voor het volgen van beslissingen te configureren: laat een beslissing valideren door een lijnmanager, verkrijg goedkeuring van een bevoegde afdeling, zorg ervoor dat het document wordt verzonden door de bevoegde afdelingen, etc.
|
||||
Het is mogelijk om paden voor het volgen van beslissingen te configureren: laat een beslissing valideren door een hoofdbegeleider, verkrijg goedkeuring van de pedagoog, zorg ervoor dat het document wordt verzonden door de bevoegde afdelingen, etc.
|
||||
|
||||
Het pad kan worden beperkt om zich aan te passen aan bestaande validatiepaden.
|
||||
|
||||
Standaard heeft Chill een algemene workflow, die al geschikt is voor veel mogelijke gevallen.
|
||||
Standaard heeft Chill een algemene workflow, die al geschikt is voor veel mogelijke gevallen, maar anderen kunnen uiteraard ook worden geconfigureerd.
|
||||
|
@ -1,8 +1,12 @@
|
||||
---
|
||||
title: en Brochure
|
||||
subtitle:
|
||||
title: Brochure
|
||||
description: Download, lees, print, en deel
|
||||
image:
|
||||
comments: false
|
||||
---
|
||||
|
||||
<p class="text-brochure">Als je meer wilt weten over Chill, download dan hier de brochure. Misschien wil je'm zelfs afdrukken en delen? ;-)</p>
|
||||
|
||||
<button class="btn-primary download">
|
||||
<a class="btn-primary" href="/Brochure_Chill_V9.zip">Download de brochure</a>
|
||||
</button>
|
||||
|
@ -21,5 +21,6 @@ De handleiding is ook toegankelijk via een link in de voettekst van de toepassin
|
||||
|
||||
<h5 class="content-subtitle bord-2">Chill training</h5>
|
||||
|
||||
Vraag je Chill [provider](/get-chill/providers) om een Chill trainingsdag te organiseren.
|
||||
Vraag je Chill [provider](/nl/get-chill/providers) om een Chill trainingsdag te organiseren.
|
||||
|
||||
|
||||
|
45
go.mod
45
go.mod
@ -3,27 +3,26 @@ module hugoplate.netlify.app
|
||||
go 1.20
|
||||
|
||||
require (
|
||||
github.com/gethugothemes/hugo-modules/accordion v0.0.0-20231001043352-2e720c5b7e8b // indirect
|
||||
github.com/gethugothemes/hugo-modules/adsense v0.0.0-20231001043352-2e720c5b7e8b // indirect
|
||||
github.com/gethugothemes/hugo-modules/components/cookie-consent v0.0.0-20231001043352-2e720c5b7e8b // indirect
|
||||
github.com/gethugothemes/hugo-modules/components/custom-script v0.0.0-20231001043352-2e720c5b7e8b // indirect
|
||||
github.com/gethugothemes/hugo-modules/components/preloader v0.0.0-20231001043352-2e720c5b7e8b // indirect
|
||||
github.com/gethugothemes/hugo-modules/components/render-link v0.0.0-20231001043352-2e720c5b7e8b // indirect
|
||||
github.com/gethugothemes/hugo-modules/components/social-share v0.0.0-20231001043352-2e720c5b7e8b // indirect
|
||||
github.com/gethugothemes/hugo-modules/gallery-slider v0.0.0-20231001043352-2e720c5b7e8b // indirect
|
||||
github.com/gethugothemes/hugo-modules/gzip-caching v0.0.0-20231001043352-2e720c5b7e8b // indirect
|
||||
github.com/gethugothemes/hugo-modules/icons/font-awesome v0.0.0-20231001043352-2e720c5b7e8b // indirect
|
||||
github.com/gethugothemes/hugo-modules/images v0.0.0-20231001043352-2e720c5b7e8b // indirect
|
||||
github.com/gethugothemes/hugo-modules/modal v0.0.0-20231001043352-2e720c5b7e8b // indirect
|
||||
github.com/gethugothemes/hugo-modules/pwa v0.0.0-20231001043352-2e720c5b7e8b // indirect
|
||||
github.com/gethugothemes/hugo-modules/search v0.0.0-20231001043352-2e720c5b7e8b // indirect
|
||||
github.com/gethugothemes/hugo-modules/seo-tools/basic-seo v0.0.0-20231001043352-2e720c5b7e8b // indirect
|
||||
github.com/gethugothemes/hugo-modules/seo-tools/google-tag-manager v0.0.0-20231001043352-2e720c5b7e8b // indirect
|
||||
github.com/gethugothemes/hugo-modules/seo-tools/site-verifications v0.0.0-20231001043352-2e720c5b7e8b // indirect
|
||||
github.com/gethugothemes/hugo-modules/shortcodes/button v0.0.0-20231001043352-2e720c5b7e8b // indirect
|
||||
github.com/gethugothemes/hugo-modules/shortcodes/notice v0.0.0-20231001043352-2e720c5b7e8b // indirect
|
||||
github.com/gethugothemes/hugo-modules/tab v0.0.0-20231001043352-2e720c5b7e8b // indirect
|
||||
github.com/gethugothemes/hugo-modules/table-of-contents v0.0.0-20231001043352-2e720c5b7e8b // indirect
|
||||
github.com/gethugothemes/hugo-modules/videos v0.0.0-20231001043352-2e720c5b7e8b // indirect
|
||||
github.com/zeon-studio/hugoplate v0.0.0-20230919033707-39e487943d6d // indirect
|
||||
github.com/gethugothemes/hugo-modules/accordion v0.0.0-20250306074534-f5c3a047e69c // indirect
|
||||
github.com/gethugothemes/hugo-modules/adsense v0.0.0-20250306074534-f5c3a047e69c // indirect
|
||||
github.com/gethugothemes/hugo-modules/components/cookie-consent v0.0.0-20250306074534-f5c3a047e69c // indirect
|
||||
github.com/gethugothemes/hugo-modules/components/custom-script v0.0.0-20250306074534-f5c3a047e69c // indirect
|
||||
github.com/gethugothemes/hugo-modules/components/preloader v0.0.0-20250306074534-f5c3a047e69c // indirect
|
||||
github.com/gethugothemes/hugo-modules/components/render-link v0.0.0-20250306074534-f5c3a047e69c // indirect
|
||||
github.com/gethugothemes/hugo-modules/components/social-share v0.0.0-20250306074534-f5c3a047e69c // indirect
|
||||
github.com/gethugothemes/hugo-modules/gallery-slider v0.0.0-20250306074534-f5c3a047e69c // indirect
|
||||
github.com/gethugothemes/hugo-modules/gzip-caching v0.0.0-20250306074534-f5c3a047e69c // indirect
|
||||
github.com/gethugothemes/hugo-modules/icons/font-awesome v0.0.0-20250306074534-f5c3a047e69c // indirect
|
||||
github.com/gethugothemes/hugo-modules/images v0.0.0-20250306074534-f5c3a047e69c // indirect
|
||||
github.com/gethugothemes/hugo-modules/modal v0.0.0-20250306074534-f5c3a047e69c // indirect
|
||||
github.com/gethugothemes/hugo-modules/pwa v0.0.0-20250306074534-f5c3a047e69c // indirect
|
||||
github.com/gethugothemes/hugo-modules/search v0.0.0-20250306074534-f5c3a047e69c // indirect
|
||||
github.com/gethugothemes/hugo-modules/seo-tools/basic-seo v0.0.0-20250306074534-f5c3a047e69c // indirect
|
||||
github.com/gethugothemes/hugo-modules/seo-tools/google-tag-manager v0.0.0-20250306074534-f5c3a047e69c // indirect
|
||||
github.com/gethugothemes/hugo-modules/seo-tools/site-verifications v0.0.0-20250306074534-f5c3a047e69c // indirect
|
||||
github.com/gethugothemes/hugo-modules/shortcodes/button v0.0.0-20250306074534-f5c3a047e69c // indirect
|
||||
github.com/gethugothemes/hugo-modules/shortcodes/notice v0.0.0-20250306074534-f5c3a047e69c // indirect
|
||||
github.com/gethugothemes/hugo-modules/tab v0.0.0-20250306074534-f5c3a047e69c // indirect
|
||||
github.com/gethugothemes/hugo-modules/table-of-contents v0.0.0-20250306074534-f5c3a047e69c // indirect
|
||||
github.com/gethugothemes/hugo-modules/videos v0.0.0-20250306074534-f5c3a047e69c // indirect
|
||||
)
|
||||
|
@ -4,7 +4,7 @@
|
||||
baseURL = "/"
|
||||
|
||||
# Title of your website (required).
|
||||
title = "CHILL"
|
||||
title = "CHILL - Logiciel libre d'accompagnement social"
|
||||
|
||||
# Your theme name
|
||||
theme = "hugoplate"
|
||||
@ -25,7 +25,7 @@ summaryLength = 10 # see https://gohugo.io/content-management/excerpts/
|
||||
#disqusShortname = "themefisher-template" # we use disqus to show comments in blog posts . To install disqus please follow this tutorial https://portfolio.peter-baumgartner.net/2017/09/10/how-to-install-disqus-on-hugo/
|
||||
|
||||
# disable language
|
||||
disableLanguages = []
|
||||
disableLanguages = []
|
||||
hasCJKLanguage = false # If hasCJKLanguage true, auto-detect Chinese/Japanese/Korean Languages in the content. see: https://gohugo.io/getting-started/configuration/#hascjklanguage
|
||||
defaultContentLanguage = "fr"
|
||||
|
||||
@ -69,7 +69,6 @@ target = 'css'
|
||||
source = 'assets/.*\.(.*)$'
|
||||
target = '$1'
|
||||
|
||||
|
||||
############################# Outputs ############################
|
||||
[outputs]
|
||||
home = ["HTML", "RSS", "WebAppManifest", "SearchIndex"]
|
||||
|
@ -16,6 +16,12 @@ Follow these steps:
|
||||
6. In the package.json file change the dev command with `"hugo server --bind 0.0.0.0"`
|
||||
7. Launch the container again `docker-compose up --force-recreate`
|
||||
|
||||
# Deployment
|
||||
|
||||
1. Create a changie to keep track of the changes you made and create a new version.
|
||||
2. Launch the CI by tagging your last commits and pushing the tag. The tag should start with `v` and then the version number.
|
||||
3. Change the tag in ansible and apply the changes
|
||||
|
||||
--------------------
|
||||
|
||||
<h1 align="center">Hugo + Tailwind CSS Starter and Boilerplate</h1>
|
||||
|
BIN
static/Brochure_Chill_V9.zip
Normal file
BIN
static/Brochure_Chill_V9.zip
Normal file
Binary file not shown.
BIN
static/images/chill-admin.png
Normal file
BIN
static/images/chill-admin.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 5.9 KiB |
@ -7,7 +7,7 @@
|
||||
{{ $pageLink := replace (replace $context.RelPermalink (add $pageLang "/") "") $base.Path "/" }}
|
||||
|
||||
{{ if $context.IsTranslated }}
|
||||
<select class="{{ $class }}" onchange="location = this.value">
|
||||
<select class="{{ $class }} lang-select" onchange="location = this.value">
|
||||
{{ range $siteLanguages }}
|
||||
{{ if eq (string $pageLang) (string .Language) }}
|
||||
<option
|
||||
|
Loading…
Reference in New Issue
Block a user