\r\n ${createControls(month, year, options)}\r\n
\r\n ${createViewTemplate(\r\n date,\r\n year,\r\n selectedDate,\r\n selectedYear,\r\n selectedMonth,\r\n options,\r\n monthsInRow,\r\n yearsInView,\r\n yearsInRow\r\n )}\r\n
\r\n ${createFooter(options)}\r\n
\r\n `;\r\n\r\n return mainContentTemplate;\r\n}\r\n\r\nfunction createViewTemplate(\r\n date,\r\n year,\r\n selectedDate,\r\n selectedYear,\r\n selectedMonth,\r\n options,\r\n monthsInRow,\r\n yearsInView,\r\n yearsInRow\r\n) {\r\n let viewTemplate;\r\n if (options.view === 'days') {\r\n viewTemplate = createDayViewTemplate(date, selectedDate, options);\r\n } else if (options.view === 'months') {\r\n viewTemplate = createMonthViewTemplate(year, selectedYear, selectedMonth, options, monthsInRow);\r\n } else {\r\n viewTemplate = createYearViewTemplate(date, selectedYear, options, yearsInView, yearsInRow);\r\n }\r\n\r\n return viewTemplate;\r\n}\r\n\r\nfunction createControls(month, year, options) {\r\n return `\r\n