-
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.
- Loading branch information
Steven Masfaraud
committed
Jan 13, 2024
1 parent
45b9e22
commit dc52575
Showing
2 changed files
with
34 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<title>Calendrier Zen Flex</title> | ||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/evo-calendar@1.1.3/evo-calendar/css/evo-calendar.min.css"> | ||
<link rel="stylesheet" href="theme.css"> | ||
</head> | ||
<body> | ||
|
||
<div id="calendar"></div> | ||
|
||
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.7.1/jquery.min.js" integrity="sha512-v2CJ7UaYy4JwqLDIrZUI/4hqeoQieOmAZNXBeQyjo21dadnwR+8ZaIJVT8EE2iyI61OV8e6M8PP2/4hpQINQ/g==" crossorigin="anonymous" referrerpolicy="no-referrer"></script> | ||
<script src="https://cdn.jsdelivr.net/npm/evo-calendar@1.1.3/evo-calendar/js/evo-calendar.min.js"></script> | ||
|
||
<script> | ||
// initialize your calendar, once the page's DOM is ready | ||
$(document).ready(function() { | ||
$('#calendar').evoCalendar({ | ||
theme: 'Royal Navy' | ||
}); | ||
$('#calendar').evoCalendar('setTheme', 'Royal Navy'); | ||
$('#calendar').evoCalendar('addCalendarEvent', { | ||
id: 'kNybja6', | ||
name: 'Jour Sobriété', | ||
description: 'Lorem ipsum dolor sit..', | ||
date: 'January 3, 2024', | ||
type: 'red' | ||
}); | ||
}) | ||
</script> | ||
|
||
</body> | ||
</html> |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.