ajout page calendrier

This commit is contained in:
Tykayn 2025-10-04 12:58:44 +02:00 committed by tykayn
parent 8aa4e107ac
commit 20a8445a5f
14 changed files with 617 additions and 5 deletions

View file

@ -6,6 +6,7 @@ import { OedbApi } from '../../services/oedb-api';
import { UnlocatedEvents } from '../../shared/unlocated-events/unlocated-events';
@Component({
selector: 'app-home',
standalone: true,
imports: [
Menu,
AllEvents,

View file

@ -1,5 +1,6 @@
<menu>
OpenEventDatabase
<a routerLink="/agenda">agenda</a>
<a href="/demo/stats">stats</a>
<a href="https://source.cipherbliss.com/tykayn/oedb-backend">sources</a>

View file

@ -1,9 +1,11 @@
import { Component } from '@angular/core';
import oedb_what_categories from '../../../../oedb-types';
import { RouterLink } from "@angular/router";
@Component({
selector: 'app-menu',
imports: [],
standalone: true,
imports: [RouterLink],
templateUrl: './menu.html',
styleUrl: './menu.scss'
})