-
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c53d872
commit 5992833
Showing
1 changed file
with
9 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,14 +9,20 @@ | |
<head> | ||
<meta http-equiv='Content-type' content='text/html;charset=UTF-8' /> | ||
<link rel='icon' type='image/ico' href='favicon.ico' /> | ||
<link rel='stylesheet' type='text/css' href='https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css'> | ||
<!-- bootstrap css --> | ||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.3.3/css/bootstrap.min.css" integrity="sha512-jnSuA4Ss2PkkikSOLtYs8BlYIeeIK1h99ty4YfvRPAlzr377vr3CXDb7sb7eEEBYjDtcYj+AjBH3FLv5uSJuXg==" crossorigin="anonymous" referrerpolicy="no-referrer" /> | ||
<!-- fontawesome brands css --> | ||
<link rel='stylesheet' href='https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/brands.min.css' integrity='sha512-8RxmFOVaKQe/xtg6lbscU9DU0IRhURWEuiI0tXevv+lXbAHfkpamD4VKFQRto9WgfOJDwOZ74c/s9Yesv3VvIQ==' crossorigin='anonymous' referrerpolicy='no-referrer' /> | ||
<link rel='stylesheet' type='text/css' href='styles.css'> | ||
</head> | ||
<body> | ||
|
||
<div class='container-fluid'> | ||
<div class='mb-5'> | ||
<div class='d-flex justify-content-between'> | ||
<h1>malle demo page</h1> | ||
<a class='m-2 p-2' href='https://github.com/deltablot/malle' target='_blank'><i class='fa-brands fa-github fa-2x'></i></a> | ||
</div> | ||
<h2>API documentation</h2> | ||
<p>If you are looking for the complete API documentation, with all possible options and interfaces with their description, it is available here:</p> | ||
<a href='/malle/api' target='_blank'><button class='btn btn-primary'>Complete API documentation</button></a> | ||
|
@@ -62,6 +68,8 @@ <h2>Running a function when the Cancel button is pressed</h2> | |
</div> | ||
</div> | ||
|
||
<script src="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/js/fontawesome.min.js" integrity="sha512-C8qHv0HOaf4yoA7ISuuCTrsPX8qjolYTZyoFRKNA9dFKnxgzIHnYTOJhXQIt6zwpIFzCrRzUBuVgtC4e5K1nhA==" crossorigin="anonymous" referrerpolicy="no-referrer"></script> | ||
<script src='https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/js/brands.min.js' integrity='sha512-giAmE8KpCT6HP3DEwIvW9LYVnDs79iIaKEYFTjH62EWoglWgdAJa1ahiLUfoc3NFaAeWM6E3VdQyH1Ob2dmwQw==' crossorigin='anonymous' referrerpolicy='no-referrer'></script> | ||
<script src='demo.js' type='module'></script> | ||
|
||
</body> | ||
|