Skip to content

Commit

Permalink
init
Browse files Browse the repository at this point in the history
  • Loading branch information
Steven Masfaraud committed Jan 13, 2024
1 parent 45b9e22 commit dc52575
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 0 deletions.
33 changes: 33 additions & 0 deletions index.html
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>
1 change: 1 addition & 0 deletions theme.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit dc52575

Please sign in to comment.