Skip to content

Latest commit

 

History

History
62 lines (49 loc) · 2.02 KB

safety-minutes.md

File metadata and controls

62 lines (49 loc) · 2.02 KB
layout title description date byline permalink image
default
Safety Minutes
You may have heard about safety minutes at nuclear companies, where every meeting starts with some discussion of safety. Doing this demonstrates that your organization is laser-focused on safety. You can get a random safety minute here. Please feel free to contribute your favorite.
2022-09-26
true
/safety-minutes/
/img/nuclear-safety-minute.png

You may have heard about safety minutes at nuclear companies, where every meeting starts with some discussion of safety. Doing this demonstrates that your organization is laser-focused on safety.

Safety minutes don't have to just be about nuclear safety. They can be about household safety or emergency preparedness too.

It's hard to come up with new and useful safety minutes with so many meetings going on. Thus, we often end up hearing the same old ones again and again.

This is a place where we can list out a few of our favorites for sharing and collaboration.

Random Safety Minute

Listing of all Safety Minutes

Contributing to the database

To contribute, you can add a file in this folder on GitHub. Start by just copying another one. The format is kramdown, which is kind of a combo of markdown and HTML

<script> // inspired by https://nicolejeanette.me/javascript-random-link-generator/ var random = new Array(); {% for minute in site.safetyminutes %} random[{{ forloop.index| minus: 1 }}] = "{{- minute.url -}}"; {% endfor %} function randomlink() { window.location = random[Math.floor(Math.random()*random.length)]; } </script>