-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added: User: Example how to integrate User component into menu
- Loading branch information
flori
authored and
flori
committed
Nov 12, 2024
1 parent
2ac355c
commit cc6d41b
Showing
2 changed files
with
39 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<title>SWAC - user component - example 9</title> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width,initial-scale=1.0"> | ||
<link rel="icon" type="image/png" sizes="32x32" href="../../files/icons/32x32.png"> | ||
<link rel="icon" type="image/png" sizes="16x16" href="../../files/icons/16x16.png"> | ||
<link rel="stylesheet" type="text/css" href="../../css/global.css"> | ||
<noscript> | ||
<link rel="stylesheet" type="text/css" href="../../css/noscript.css"> | ||
</noscript> | ||
|
||
<link rel="stylesheet" href="/SWAC/swac/libs/uikit/css/uikit.min.css" /> | ||
<script src="/SWAC/swac/libs/uikit/js/uikit.min.js"></script> | ||
<script src="/SWAC/swac/swac.js" type="module"></script> | ||
</head> | ||
<body> | ||
<header id="head_navigation" swa="Navigation FROM ../../data/routes.json"></header> | ||
<noscript> | ||
<div class="noscript_nav"> | ||
<a href="../sitemap.html" class="uk-button uk-button-primary">Sitemap</a> | ||
<br>Bitte aktiviere Javascript, um die bestmögliche Ansicht zu haben. / Please activate Javascript for the best experience. | ||
</div> | ||
</noscript> | ||
|
||
<article> | ||
<h1>Example 9: Integrate user form in menu</h1> | ||
<p>Useing the default template the user form is automatically integrated into the menu, if you use the nav component too.</p> | ||
<div id="user" swa="User"></div> | ||
</article> | ||
</body> | ||
</html> |