@page "/info" @using cwebplusApp.Shared.Services; @using System; @using System.Reflection; @inject NavigationManager NavigationManager; @inject IStringLocalizer I18n @inject PageHistoryManager PageHistoryManager @inject IJSRuntime JSRuntime;
@I18n["App.Info"]
@I18n["App.Info.Fundvelo"]

Velos (caritas-luzern.ch)
Luzern – Forum Velostationen Schweiz
nextbike | Fahrradverleih in Luzern
Velodienste, Velowerkstatt & Veloverleih

@I18n["App.Info.KuLe"]

https://www.kulturlegi.ch

@I18n["Learnmore"]
@I18n["App.version", @version]
@I18n["DevelopedBy"]
Platz 10, Business Village Luzern
CH-6039 Root D4
@code { private string version; protected override void OnInitialized() { base.OnInitialized(); version = Assembly.GetExecutingAssembly().GetCustomAttribute().InformationalVersion; } private async void ShowCaritasWebpage() { await JSRuntime.InvokeAsync("open", $"https://www.caritas.ch", "_blank", "noopener"); } }