aboutsummaryrefslogtreecommitdiff
path: root/module/calp/html/view/small-calendar.scm
blob: 80cbbaf24130b80d4786afe3b7c45f8aea9ea5da (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
(define-module (calp html view small-calendar)
  :use-module ((calp html components) :select (xhtml-doc include-css))
  :use-module ((calp html caltable) :select (cal-table))
  :use-module ((datetime) :select (month- month+ remove-day date->string))
  )

(define-public (render-small-calendar month standalone)
  (define table (cal-table
                 start-date: month
                 end-date: (remove-day (month+ month))
                 next-start: month+
                 prev-start: month-
                 ))
  (if standalone
      (xhtml-doc
       (head (title ,(date->string month "~1"))
             ,(include-css "/static/smallcal.css"))
       (body ,table))
      table))