Added comprehensive inline comments (mainly in German) to key files (index.html, Program.cs, App.razor, MainLayout.razor, NavMenu.razor, Catalogs.razor, CatalogApiClient.cs) to clarify their roles and the overall application flow. Updated Home.razor with a clearer heading and intro. Introduced Ablauf.cs, which documents the loading order and responsibilities of each major component. These changes enhance codebase clarity and maintainability, especially for German-speaking developers.
20 lines
544 B
Plaintext
20 lines
544 B
Plaintext
@* Definiert das Hauptlayout der Anwendung.
|
|
Enthält die Navigationsleiste und den Hauptinhalt. *@
|
|
|
|
@inherits LayoutComponentBase
|
|
<div class="page">
|
|
<div class="sidebar">
|
|
<NavMenu /> <!-- Einbindung der Navigationsleiste -->
|
|
</div>
|
|
|
|
<main>
|
|
<div class="top-row px-4">
|
|
<a href="https://learn.microsoft.com/aspnet/core/" target="_blank">About</a>
|
|
</div>
|
|
|
|
<article class="content px-4">
|
|
@Body <!-- Platzhalter für den Seiteninhalt -->
|
|
</article>
|
|
</main>
|
|
</div>
|