<%
const sample = getSample(include);
let data = { caption: 'Titre du tableau (caption)', col: 6, row: 3};
let dataBordered = { caption: 'Titre du tableau (caption)', bordered: true, col: 6, row: 3};
let dataNoScroll = { caption: 'Titre du tableau (caption) non scrollable', noScroll: true, col: 6};
let dataLayoutFixed = { caption: 'Titre du tableau (caption) fixé', layout: "fixed", col: 3};
let dataNoCaption = { caption: 'Titre du tableau (caption) caché', noCaption: true, col: 6};
let dataCaptionBottom = { caption: 'Titre du tableau (caption) en bas', captionBottom: true, col: 6};
%>

<%- sample('Tableau par défaut', './sample/table-default', {table:data}, true) %>

<%- sample('Tableau minimal', './sample/table-default', {table: { caption: 'Titre du tableau (caption)', col: 2, row: 3}}, true) %>

<%- sample('Tableau avec bordure', './sample/table-default', {table:dataBordered}, true) %>

<%- sample('Tableau non scrollable', './sample/table-default', {table:dataNoScroll}, true) %>

<%- sample('Tableau colonnes fixées (layout-fixed)', './sample/table-default', {table:dataLayoutFixed}, true) %>

<%- sample('Tableau avec titre invisible', './sample/table-default', {table:dataNoCaption}, true) %>

<%- sample('Tableau avec titre en bas', './sample/table-default', {table:dataCaptionBottom}, true) %>

<%- sample('Tableau accentué', './sample/table-default', {table: {...data, accent:'green-emeraude'}}, true) %>

<%- sample('Tableau accentué avec bordure', './sample/table-default', {table:{...dataBordered, accent:'green-emeraude'}}, true) %>
