Added 2023 images to gallery
This commit is contained in:
parent
7ea4f1fb6c
commit
7c41104ea4
@ -29,6 +29,7 @@ import {DrillComponent} from './views/reenact/drill/drill.component';
|
|||||||
import {GettingStartedComponent} from './views/reenact/getting-started/getting-started.component';
|
import {GettingStartedComponent} from './views/reenact/getting-started/getting-started.component';
|
||||||
import {MaintenanceComponent} from './views/reenact/maintinance/maintenance.component';
|
import {MaintenanceComponent} from './views/reenact/maintinance/maintenance.component';
|
||||||
import {RulesComponent} from './views/reenact/rules/rules.component';
|
import {RulesComponent} from './views/reenact/rules/rules.component';
|
||||||
|
import {BuyComponent} from './views/reenact/buy/buy.component';
|
||||||
|
|
||||||
export const APP_COMPONENTS: any[] = [
|
export const APP_COMPONENTS: any[] = [
|
||||||
AboutComponent,
|
AboutComponent,
|
||||||
@ -36,6 +37,7 @@ export const APP_COMPONENTS: any[] = [
|
|||||||
AgoniumComponent,
|
AgoniumComponent,
|
||||||
AppComponent,
|
AppComponent,
|
||||||
BannerComponent,
|
BannerComponent,
|
||||||
|
BuyComponent,
|
||||||
CalendarComponent,
|
CalendarComponent,
|
||||||
CarouselComponent,
|
CarouselComponent,
|
||||||
ContactComponent,
|
ContactComponent,
|
||||||
@ -52,7 +54,7 @@ export const APP_COMPONENTS: any[] = [
|
|||||||
MaintenanceComponent,
|
MaintenanceComponent,
|
||||||
NavbarComponent,
|
NavbarComponent,
|
||||||
PlaceholderComponent,
|
PlaceholderComponent,
|
||||||
RulesComponent
|
RulesComponent,
|
||||||
]
|
]
|
||||||
|
|
||||||
export const APP_IMPORTS: any[] = [
|
export const APP_IMPORTS: any[] = [
|
||||||
|
@ -13,10 +13,12 @@ import {DrillComponent} from './views/reenact/drill/drill.component';
|
|||||||
import {GettingStartedComponent} from './views/reenact/getting-started/getting-started.component';
|
import {GettingStartedComponent} from './views/reenact/getting-started/getting-started.component';
|
||||||
import {MaintenanceComponent} from './views/reenact/maintinance/maintenance.component';
|
import {MaintenanceComponent} from './views/reenact/maintinance/maintenance.component';
|
||||||
import {RulesComponent} from './views/reenact/rules/rules.component';
|
import {RulesComponent} from './views/reenact/rules/rules.component';
|
||||||
|
import {BuyComponent} from './views/reenact/buy/buy.component';
|
||||||
|
|
||||||
const routes: Routes = [
|
const routes: Routes = [
|
||||||
{path: '', pathMatch: 'full', component: HomeComponent},
|
{path: '', pathMatch: 'full', component: HomeComponent},
|
||||||
{path: 'about', component: AboutComponent, data: {title: 'About'}},
|
{path: 'about', component: AboutComponent, data: {title: 'About'}},
|
||||||
|
{path: 'buy', component: BuyComponent, data: {title: 'Buy'}},
|
||||||
{path: 'drill', component: DrillComponent, data: {title: 'Drill Commands'}},
|
{path: 'drill', component: DrillComponent, data: {title: 'Drill Commands'}},
|
||||||
{path: 'diy', component: DiyComponent, data: {title: 'Build Equipment'}},
|
{path: 'diy', component: DiyComponent, data: {title: 'Build Equipment'}},
|
||||||
{path: 'events/agonium', component: AgoniumComponent, data: {title: 'Agonium'}},
|
{path: 'events/agonium', component: AgoniumComponent, data: {title: 'Agonium'}},
|
||||||
|
@ -10,7 +10,19 @@ import {Photo} from '../../components/models/photo';
|
|||||||
})
|
})
|
||||||
export class GalleryComponent {
|
export class GalleryComponent {
|
||||||
photos: {album: string, photos: Photo[]}[] = [
|
photos: {album: string, photos: Photo[]}[] = [
|
||||||
{album: '2022', photos: [
|
{album: '2023', photos: [
|
||||||
|
{alt: '', src: '/assets/img/gallery/2023/001.jpg'},
|
||||||
|
{alt: '', src: '/assets/img/gallery/2023/002.jpg'},
|
||||||
|
{alt: '', src: '/assets/img/gallery/2023/003.jpg'},
|
||||||
|
{alt: '', src: '/assets/img/gallery/2023/004.jpg'},
|
||||||
|
{alt: '', src: '/assets/img/gallery/2023/005.jpg'},
|
||||||
|
{alt: '', src: '/assets/img/gallery/2023/006.jpg'},
|
||||||
|
{alt: '', src: '/assets/img/gallery/2023/007.jpg'},
|
||||||
|
{alt: '', src: '/assets/img/gallery/2023/008.jpg'},
|
||||||
|
{alt: '', src: '/assets/img/gallery/2023/009.jpg'},
|
||||||
|
{alt: '', src: '/assets/img/gallery/2023/010.jpg'},
|
||||||
|
{alt: '', src: '/assets/img/gallery/2023/011.jpg'},
|
||||||
|
]}, {album: '2022', photos: [
|
||||||
{alt: '', src: '/assets/img/gallery/2022/001.jpg'},
|
{alt: '', src: '/assets/img/gallery/2022/001.jpg'},
|
||||||
{alt: '', src: '/assets/img/gallery/2022/002.jpg'},
|
{alt: '', src: '/assets/img/gallery/2022/002.jpg'},
|
||||||
{alt: '', src: '/assets/img/gallery/2022/003.jpg'},
|
{alt: '', src: '/assets/img/gallery/2022/003.jpg'},
|
||||||
|
15
src/app/views/reenact/buy/buy.component.html
Normal file
15
src/app/views/reenact/buy/buy.component.html
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
<div class="invert">
|
||||||
|
<div class="cap-width py-5 px-3">
|
||||||
|
<div class="mb-3">
|
||||||
|
<div class="d-flex align-items-end justify-content-between mb-2">
|
||||||
|
<h1 class="mb-0">Buy Equipment</h1>
|
||||||
|
</div>
|
||||||
|
<mat-divider></mat-divider>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<ul>
|
||||||
|
<li><a href="https://www.facebook.com/FabricaCacti" target="_blank">Fabrica Cacti</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
7
src/app/views/reenact/buy/buy.component.ts
Normal file
7
src/app/views/reenact/buy/buy.component.ts
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
import {Component} from '@angular/core';
|
||||||
|
|
||||||
|
@Component({
|
||||||
|
selector: 'xxx-buy',
|
||||||
|
templateUrl: './buy.component.html'
|
||||||
|
})
|
||||||
|
export class BuyComponent { }
|
Loading…
Reference in New Issue
Block a user