Added 2023 images to gallery
Some checks failed
Build Website / Tag Version (push) Blocked by required conditions
Build Website / Build & Push Dockerfile (push) Blocked by required conditions
Build Website / Build NPM Project (push) Has been cancelled

This commit is contained in:
Zakary Timson 2024-01-15 21:21:41 -05:00
parent 7ea4f1fb6c
commit 7c41104ea4
5 changed files with 41 additions and 3 deletions

View File

@ -29,6 +29,7 @@ import {DrillComponent} from './views/reenact/drill/drill.component';
import {GettingStartedComponent} from './views/reenact/getting-started/getting-started.component';
import {MaintenanceComponent} from './views/reenact/maintinance/maintenance.component';
import {RulesComponent} from './views/reenact/rules/rules.component';
import {BuyComponent} from './views/reenact/buy/buy.component';
export const APP_COMPONENTS: any[] = [
AboutComponent,
@ -36,6 +37,7 @@ export const APP_COMPONENTS: any[] = [
AgoniumComponent,
AppComponent,
BannerComponent,
BuyComponent,
CalendarComponent,
CarouselComponent,
ContactComponent,
@ -52,7 +54,7 @@ export const APP_COMPONENTS: any[] = [
MaintenanceComponent,
NavbarComponent,
PlaceholderComponent,
RulesComponent
RulesComponent,
]
export const APP_IMPORTS: any[] = [

View File

@ -13,10 +13,12 @@ import {DrillComponent} from './views/reenact/drill/drill.component';
import {GettingStartedComponent} from './views/reenact/getting-started/getting-started.component';
import {MaintenanceComponent} from './views/reenact/maintinance/maintenance.component';
import {RulesComponent} from './views/reenact/rules/rules.component';
import {BuyComponent} from './views/reenact/buy/buy.component';
const routes: Routes = [
{path: '', pathMatch: 'full', component: HomeComponent},
{path: 'about', component: AboutComponent, data: {title: 'About'}},
{path: 'buy', component: BuyComponent, data: {title: 'Buy'}},
{path: 'drill', component: DrillComponent, data: {title: 'Drill Commands'}},
{path: 'diy', component: DiyComponent, data: {title: 'Build Equipment'}},
{path: 'events/agonium', component: AgoniumComponent, data: {title: 'Agonium'}},

View File

@ -10,7 +10,19 @@ import {Photo} from '../../components/models/photo';
})
export class GalleryComponent {
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/002.jpg'},
{alt: '', src: '/assets/img/gallery/2022/003.jpg'},

View 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>

View File

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