diff --git a/config/safetyLinks.yaml b/config/safetyLinks.yaml index 7d276d8..053bac9 100644 --- a/config/safetyLinks.yaml +++ b/config/safetyLinks.yaml @@ -5,6 +5,10 @@ Cards: # Below that new line, with 2 indents (4 spaces) copy the template below. Do this for each link to be included in the card. # - { title: 'Card Title', url: 'URL goes here'} + #A NOTE ABOUT URLS: Do not actually provide a url. Provide the EXACT name of the html.twig file, excluding the .html.twig part. + # For example: if a file is called 'safetyinfo.html.twig', then type 'safetyinfo' + # filenames should be lowercase. + #Card Template: # Card Title: # - { title: 'Item Title', url: 'URL goes here'} @@ -14,9 +18,9 @@ Cards: - { title: 'General Safety (Video)', url: 'general'} - { title: 'Bloodborne Pathogens', url: 'bloodborne'} - { title: 'Safe Lifting (Video)', url: 'safelifting'} - - { title: 'Hazard Communication (Video)', url: ''} - - { title: 'Electrical Safety', url: ''} - - { title: 'Hearing Protection (Video)', url: ''} + - { title: 'Hazard Communication (Video)', url: 'hazardcommunication'} + - { title: 'Electrical Safety', url: 'electrical'} + - { title: 'Hearing Protection (Video)', url: 'hearing'} Workplace Hazards: - {title: 'Hand & Power Tools', url: ''} - {title: 'Welding safety (Video)', url: ''} diff --git a/public/videos/Hazard Communication.webm b/public/videos/Hazard Communication.webm new file mode 100644 index 0000000..0ff0d6e Binary files /dev/null and b/public/videos/Hazard Communication.webm differ diff --git a/public/videos/Hearing Protection.webm b/public/videos/Hearing Protection.webm new file mode 100644 index 0000000..b527cbf Binary files /dev/null and b/public/videos/Hearing Protection.webm differ diff --git a/templates/Training/Safety/Topics/electrical.html.twig b/templates/Training/Safety/Topics/electrical.html.twig new file mode 100644 index 0000000..72e246d --- /dev/null +++ b/templates/Training/Safety/Topics/electrical.html.twig @@ -0,0 +1,52 @@ + + + +{{ include('_header.html.twig') }} +{{ include('_navbar.html.twig')}} + +
+

Electrical Safety

+Unqualified Employee is any employee that has not been trained, nor is licensed or authorized by management to conduct electrical work. + +

Electrical Safety Rules for Unqualified Employees:

+ + +

Electrical equipment is defined as a cord or plug type electrical device which includes the use of a flexible or extension cord. +Examples of portable electrical equipment includes but not limited to powered hand tools, powered bench tools, fans, radios, etc. +The following safety rules apply to portable electrical equipment:

+ + +

Electrical power and lighting circuits are defined as devices specifically designed to connect, +disconnect or reverse circuits under a power load condition. When these circuits are employed, the following rules apply:

+
+ + \ No newline at end of file diff --git a/templates/Training/Safety/Topics/hazardcommunication.html.twig b/templates/Training/Safety/Topics/hazardcommunication.html.twig new file mode 100644 index 0000000..12c204f --- /dev/null +++ b/templates/Training/Safety/Topics/hazardcommunication.html.twig @@ -0,0 +1,17 @@ + + + +{{ include('_header.html.twig') }} +{{ include('_navbar.html.twig')}} + +
+

Hazard Communication

+
+ +
+
+ + \ No newline at end of file diff --git a/templates/Training/Safety/Topics/hearing.html.twig b/templates/Training/Safety/Topics/hearing.html.twig new file mode 100644 index 0000000..4b4686f --- /dev/null +++ b/templates/Training/Safety/Topics/hearing.html.twig @@ -0,0 +1,17 @@ + + + +{{ include('_header.html.twig') }} +{{ include('_navbar.html.twig')}} + +
+

Hearing Protection

+
+ +
+
+ + \ No newline at end of file