A simple website to direct users to the SAFEHR resources.
If you're a developer then you can fork this repo, edit, and submit a pull request. If you're not a developer then you can edit much of the site in a visual editor.
This is a Jekyll powered static blog. We chose Jeklyl so we can integrate with the data cards site at some point. We're using the Minimal Mistakes theme for the visual design. The site is hosted on Netlify, and we're using DecapCMS to manage the content.
Design your diagrams using the mermaid live editor. You can then copy and paste the code into the markdown file. Set the front matter of your page to include the following:
mermaid: true
And then insert your diagram code as raw html into the markdown file. For example:
<div class="mermaid">
graph TD
A[Start] --> B{Is it working?}
B -->|Yes| C[Great!]
B -->|No| D[Debug]
D --> B
</div>