37 lines
		
	
	
	
		
			900 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			37 lines
		
	
	
	
		
			900 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{{ $js := resources.Get "js/calendar.js" }}
 | 
						|
{{ $css := resources.Get "css/calendar.css" }}
 | 
						|
 | 
						|
<div class="calendar-container">
 | 
						|
  {{ with $css }}
 | 
						|
    <link rel="stylesheet" href="{{ .RelPermalink }}">
 | 
						|
  {{ end }}
 | 
						|
  {{ with $js }}
 | 
						|
    <script src="{{ .RelPermalink }}"></script>
 | 
						|
  {{ end }}
 | 
						|
  
 | 
						|
  <div id="calendar">
 | 
						|
    <div id="calendar-controls">
 | 
						|
      <button id="prev-month">←</button>
 | 
						|
      <span id="current-month"></span>
 | 
						|
      <button id="next-month">→</button>
 | 
						|
    </div>
 | 
						|
    <table id="calendar-table">
 | 
						|
      <thead>
 | 
						|
        <tr>
 | 
						|
          <th>Mo</th>
 | 
						|
          <th>Di</th>
 | 
						|
          <th>Mi</th>
 | 
						|
          <th>Do</th>
 | 
						|
          <th>Fr</th>
 | 
						|
          <th>Sa</th>
 | 
						|
          <th>So</th>
 | 
						|
        </tr>
 | 
						|
      </thead>
 | 
						|
      <tbody id="calendar-body"></tbody>
 | 
						|
    </table>
 | 
						|
  </div>
 | 
						|
  <div id="event-panel">
 | 
						|
    <div id="event-date"></div>
 | 
						|
    <div id="event-details"></div>
 | 
						|
  </div>
 | 
						|
</div>
 |