How could you make me red in the current day in Bootstrap Year Calendar?
On the official website in the examples I found something similar but I can not make it work, I leave the link:
I just want you to mark the current day, because if I get that mark me that I can also make me mark certain days and so can also mark the holidays.
This is my code:
<!DOCTYPE html>
<html lang="es">
<?php
if (strpos(getcwd(), 'apen_files') !== false) {
define('_PS_ADMIN_DIR_', getcwd());
} else {
define('_PS_ADMIN_DIR_', getcwd().'/includes/apen_files/');
}
require (_PS_ADMIN_DIR_."/config.php");
?>
<head>
<script src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/js/bootstrap.min.js"></script>
<script src="slick/slick.min.js"></script>
<link rel="stylesheet" href="slick/slick.css">
<script src="js/bootstrap-year-calendar.js"></script>
<script src="js/bootstrap-datepicker.min.js"></script>
<link rel='stylesheet' href="css/bootstrap-year-calendar.css"/>
</head>
<body>
<script type="text/javascript">
;(function($){
$.fn.calendar.dates['es'] = {
days: ["Domingo", "Lunes", "Martes", "Miércoles", "Jueves", "Viernes", "Sábado"],
daysShort: ["Dom", "Lun", "Mar", "Mié", "Jue", "Vie", "Sáb"],
daysMin: ["Do", "Lu", "Ma", "Mi", "Ju", "Vi", "Sa"],
months: ["ENERO", "FEBRERO", "MARZO", "ABRIL", "MAYO", "JUNIO", "JULIO", "AGOSTO", "SEPTIEMBRE", "OCTUBRE", "NOVIEMBRE", "DICIEMBRE"],
monthsShort: ["Ene", "Feb", "Mar", "Abr", "May", "Jun", "Jul", "Ago", "Sep", "Oct", "Nov", "Dic"],
weekShort: 'S',
weekStart: 1
};
}(jQuery));
</script>
<div id="calendar" data-provide="calendar"></div>
</body>
</html>
Thank you very much for your help