Added a rules & calendar page

This commit is contained in:
2022-10-26 21:46:25 -04:00
parent 4830b35363
commit f1b875a87e
12 changed files with 138 additions and 23 deletions

View File

@ -1 +0,0 @@
Z^C5kgHKfYgy

View File

@ -0,0 +1,7 @@
<div class="invert">
<div class="container py-4 px-3">
<h1 class="mb-2">Calendar</h1>
<mat-divider class="mb-4"></mat-divider>
<iframe src="https://calendar.google.com/calendar/embed?height=600&wkst=1&bgcolor=%23ffffff&ctz=America%2FToronto&showCalendars=0&showTabs=0&showPrint=0&showTitle=0&src=YjQ4ZGI1NDc2YWY2YTI4ZGE2NGQzNDhhNThhYWI0MGQ1NjAwNWJmMmQ1YzA0NDI3MTdjZDllNmQ0OTA5YTFkZUBncm91cC5jYWxlbmRhci5nb29nbGUuY29t&color=%23D50000" style="border-width:0" width="100%" height="600" frameborder="0" scrolling="no"></iframe>
</div>
</div>

View File

@ -0,0 +1,7 @@
import {Component} from '@angular/core';
@Component({
selector: 'xxx-calendar',
templateUrl: './calendar.component.html'
})
export class CalendarComponent { }

View File

@ -0,0 +1,75 @@
<div class="invert">
<div class="container py-4 px-3">
<div>
<h1 class="mb-2">Rules & Regulations</h1>
<mat-divider></mat-divider>
<br>
</div>
<div>
<h2 class="mb-2">General</h2>
<p>It is the responsibility of members to:</p>
<ol>
<li>You are reenacting a Roman soldier, behave like one</li>
<li>Follow the dress code at all times & stay in charchter</li>
<li>Accept constructive criticism with grace & an open mind</li>
<li>Be polite & respect everyone, you not only represent yourself but the group</li>
<li>Be courteous and helpful to anyone hosting the legion</li>
<li>Keep the venue clean & ensure everything is returned to how it was found upon departure</li>
<li>Respect the chain of command</li>
<li>Have basic knowledge about what we reencat & answer questions as accurately as possible;
<strong>Do not hesitate to admit when you don't know the answer & refer to someone else</strong>
</li>
<li>Posses the minimum amount of kit needed to participate (Let us know if you need something)</li>
<li>Equipment is to be as period correct and functional as materials and costs permits</li>
<li>All kit should be inspected for cleanliness and serviceability; see our <a href="/maintinance">maintinace guide</a></li>
<li>Absolutely <strong>no</strong> modern day paraphernalia is permitted (i.e., sunglasses, eyeglasses, wrist watches, piercings of any kind, eccentric hair colour, inappropriate visible tattoos, etc.)</li>
<li>During public events all belongings should be secured by at least one member or an assistant</li>
</ol>
</div>
<div>
<h2 class="mb-2">Dress Code</h2>
<h3 class="mb-2">Legionaries</h3>
<p>
The following is a list of equipment needed to participate, depending on the weather & who you are portraying your requirements may be different.
Check the <a href="/info/equipment">equipment page</a> for a full list:
</p>
<h4 class="mb-2">Minumum</h4>
<ul class="mt-0">
<li><span class="fst-italic">Tunica</span>/Tunic - A large shirt/dress held at the waist by a cord or cloth belt</li>
<li><span class="fst-italic">Caligae</span>/Sandles - Modern leather sandles will do in a pinch</li>
<li><span class="fst-italic">Balteus</span>/Belt - A lether ordimental apron used to afix weapons</li>
<li><span class="fst-italic">Pugio</span>/Dagger - Attached to the <span class="fst-italic">Balteus</span></li>
</ul>
<h4 class="mb-2">Marching Kit</h4>
<ul class="mt-0">
<li><span class="fst-italic">Cassis</span>/Helmet - To protect the noggin!</li>
<li><span class="fst-italic">Subarmalis</span>/Padded Vest - Additional comfort & protection</li>
<li><span class="fst-italic">Lorica</span>/Armour - Segmata, hamata or plumata/squamta</li>
<li><span class="fst-italic">Focale</span>/Scarf - Protects the neck from chaifing</li>
<li><span class="fst-italic">Gladius</span>/Sword - The primary weapon of the empire</li>
<li><span class="fst-italic">Scutum</span>/Shield - A large semicircle shield</li>
<li><span class="fst-italic">Pilum</span>/Javlin - A ranged weapon</li>
</ul>
<h3 class="mb-2">Non-Legionaries</h3>
<p>Any reenacters are welcome as long as they stay period correct to the 2nd centery AD. This may include civilians, barbarians & Greeks.</p>
</div>
<div>
<h2 class="mb-2">Weapons</h2>
<p>The inappropriate use of weapons will not be tolerated:</p>
<ol>
<li>Weapons are not to be handled by the public, under any circumstance</li>
<li>Swords and daggers will be secured at all events with a device to ensure that they cannot be removed by unauthorized personnel</li>
<li>The use of the warning “Clear” will precede the drawing of weapons</li>
</ol>
</div>
<div>
<h2 class="mb-2">Disciplinary Actions</h2>
<p>Failure to act safely & professionally may result in the following disciplinary actions:</p>
<ul>
<li>Verbal warnings</li>
<li>Removal of weapons</li>
<li>Expulsion/suspension from events</li>
</ul>
</div>
</div>
</div>

View File

@ -0,0 +1,7 @@
import {Component} from '@angular/core';
@Component({
selector: 'xxx-rules',
templateUrl: './rules.component.html'
})
export class RulesComponent { }