This commit is contained in:
2022-10-31 00:04:00 -04:00
parent 99b5fa3d1e
commit 389332447d
16 changed files with 273 additions and 52 deletions

View File

@@ -0,0 +1,41 @@
<div class="invert">
<div class="banner"></div>
<div class="container py-4 px-3">
<div>
<h1 class="mb-2"><em>Castra Aestiva</em> (Summer Camp)</h1>
<mat-divider></mat-divider>
<br>
</div>
<div>
<h2 class="mb-2">History</h2>
<p>
Each spring, as the weather improved, the campaign season would began. Roman troops would redeploy from a perminant <em>castra hiberna</em> (winter camp) to fair weather camps on the frontier known as <em>castra aestiva</em> (summer camps).
These marching camps could be errected in hours while under attack using the division of labour and would be completely disassembled when the legion left so they couldn't be used by the enemy.
</p>
<h2 class="mb-2">Details</h2>
<p>
Tom Ross hosts a castra aestiva event every Memorial Day weekend (in May) near Tillsonburg Ontario. It's a private multi-day training event involving Romans and their enemies and is the perfect oportunity for new Roman reenactors. Participants
sleep in <em>sub pellibus</em> (tents) within the protective walls of the <em>castrum</em> (fort). If May doesn't work for you, conscider coming to <a routerLink="/events/hiberna">Castra Hiberna</a> in September.
</p>
<h3 class="mb-0">Activities</h3>
<ul class="mt-0">
<li>Combat</li>
<li>Weapons Training</li>
<ul>
<li><em>Gladius & scutum</em> (Sword & shield)</li>
<li><em>Pilum</em> (Javlin throw)</li>
<li><em>Sagittariorum</em> (Archery)</li>
<li><em>Ballista</em> (Bolt thrower)</li>
<li><em>Funda</em> (Sling)</li>
<li>Stone throw</li>
</ul>
<li><em>Fabrica</em> (Craftsmenship)</li>
<li>Drill & Patrols</li>
<li>Campfires</li>
<li>Roman games</li>
<li>Food & Drink</li>
</ul>
<p>Come, participate and enjoy the camaraderie only the field of Mars can forge.</p>
</div>
</div>
</div>

View File

@@ -0,0 +1,6 @@
.banner {
width: 100%;
height: 500px;
background: white url("/assets/img/interior.jpg") center center no-repeat;
background-size: cover;
}

View File

@@ -0,0 +1,8 @@
import {Component} from '@angular/core';
@Component({
selector: 'xxx-aestiva',
templateUrl: './aestiva.component.html',
styleUrls: ['./aestiva.component.scss']
})
export class AestivaComponent { }

View File

@@ -0,0 +1,42 @@
<div class="invert">
<div class="banner"></div>
<div class="container py-4 px-3">
<div>
<h1 class="mb-2"><em>Castra Hiberna</em> (Winter Camp)</h1>
<mat-divider></mat-divider>
<br>
</div>
<div>
<h2 class="mb-2">History</h2>
<p>
Harvest marked the traditional end of the Roman campaign season and the start of <em>mare clausum</em> (closed sea) in the <em>mare nostrum</em> (Mediterranean Sea) while the sea was most dangerous. Imperial troops that slept in <em>sub pellibus</em> (tents)
inside the <em>castra aestiva</em> (summer camps) began preparations to relocate to more hospitable <em>castra hiberna</em> (winter camps), where they were housed in stone lodgings impervious to the elements.
</p>
<p>In the fall, the indigenous people had to focus their efforts on harvesting crops & preparing for the cold harsh winter. This left little time for raids & hostilities giving Roman soldiers time to rest, train & recoupe.</p>
<h2 class="mb-2">Details</h2>
<p>
Tom Ross hosts a castra hiberna event in September near Tillsonburg Ontario. It's a private single day event between Romans and their adversaries. It's an excellent oportunity for new Roman reenactors. If May doesn't work for you, conscider coming to
<a routerLink="/events/aestiva">Castra Aestiva</a> in May.
</p>
<h3 class="mb-0">Activities</h3>
<ul class="mt-0">
<li>Combat</li>
<li>Weapons Training</li>
<ul>
<li><em>Gladius & scutum</em> (Sword & shield)</li>
<li><em>Pilum</em> (Javlin throw)</li>
<li><em>Sagittariorum</em> (Archery)</li>
<li><em>Ballista</em> (Bolt thrower)</li>
<li><em>Funda</em> (Sling)</li>
<li>Stone throw</li>
</ul>
<li><em>Fabrica</em>/Craftsmenship</li>
<li>Drill & Patrols</li>
<li>Campfires</li>
<li>Roman games</li>
<li>Food & Drink</li>
</ul>
<p>Come, participate and enjoy the camaraderie only the field of Mars can forge.</p>
</div>
</div>
</div>

View File

@@ -0,0 +1,6 @@
.banner {
width: 100%;
height: 500px;
background: white url("/assets/img/morning-mist.jpg") center center no-repeat;
background-size: cover;
}

View File

@@ -0,0 +1,8 @@
import {Component} from '@angular/core';
@Component({
selector: 'xxx-hiberna',
templateUrl: './hiberna.component.html',
styleUrls: ['./hiberna.component.scss']
})
export class HibernaComponent { }