diff --git a/src/app/views/about/about.component.html b/src/app/views/about/about.component.html index 080d811..555f6b6 100644 --- a/src/app/views/about/about.component.html +++ b/src/app/views/about/about.component.html @@ -1,4 +1,5 @@
+

About

@@ -41,11 +42,11 @@

Conferences & Festivals

    -
  • Toronto Living History Conference (2007)
  • +
  • Toronto Living History Conference, Toronto ON (2007)
  • Thorold Italian Festival, Thorold ON (2008)
  • -
  • Historic Merchant’s Xmas, Hamilton, ON (2009)
  • -
  • History Symposium, London, ON (2019)
  • -
  • Artifact Day at Longwoods Road Conservation Area (2022)
  • +
  • Historic Merchant’s Xmas, Hamilton ON (2009)
  • +
  • History Symposium, London ON (2019)
  • +
  • Artifact Day, Longwoods Road Conservation Area (2022)
@@ -55,11 +56,11 @@
  • Roman Market Days (2004)
  • NE Route March, Erie Canal (2005)
  • Roman Days (2005)
  • -
  • Fort Meigs, Perrysburg OH (2007 and 2008)
  • +
  • Fort Meigs, Perrysburg OH (2007, 2008)
  • Varus Disaster New Ulm Minnesota (2009)
  • New Glarus, Wisconsin (2010)
  • Legio II Castrum, ON (2010)
  • -
  • Southern Ontario Military Muster, ON (2012 and 2013)
  • +
  • Southern Ontario Military Muster, ON (2012, 2013)
  • Roman Field Trek, ON (2013)
  • diff --git a/src/app/views/about/about.component.scss b/src/app/views/about/about.component.scss new file mode 100644 index 0000000..ed22deb --- /dev/null +++ b/src/app/views/about/about.component.scss @@ -0,0 +1,6 @@ +.banner { + width: 100%; + height: 500px; + background: white url("/assets/img/castra.jpg") center center no-repeat; + background-size: cover; +} diff --git a/src/app/views/about/about.component.ts b/src/app/views/about/about.component.ts index 2a78331..3f06450 100644 --- a/src/app/views/about/about.component.ts +++ b/src/app/views/about/about.component.ts @@ -2,6 +2,7 @@ import {Component} from '@angular/core'; @Component({ selector: 'xxx-about', - templateUrl: './about.component.html' + templateUrl: './about.component.html', + styleUrls: ['./about.component.scss'] }) export class AboutComponent { } diff --git a/src/assets/img/castra.jpg b/src/assets/img/castra.jpg new file mode 100644 index 0000000..2979e8e Binary files /dev/null and b/src/assets/img/castra.jpg differ