IE support warning
parent
572218913f
commit
76ea727cd2
@ -0,0 +1,7 @@
|
|||||||
|
#lang pollen
|
||||||
|
|
||||||
|
◊; show ie-specific things
|
||||||
|
|
||||||
|
.ie {
|
||||||
|
display: block; !important
|
||||||
|
}
|
@ -1,9 +1,16 @@
|
|||||||
#lang racket/base
|
#lang pollen/mode racket/base
|
||||||
(require "scribblings/pollen-rkt.scrbl")
|
(require "scribblings/pollen-rkt.scrbl" pollen/tag)
|
||||||
(provide (all-from-out "scribblings/pollen-rkt.scrbl"))
|
(provide (all-from-out "scribblings/pollen-rkt.scrbl"))
|
||||||
|
|
||||||
(module setup racket/base
|
(module setup racket/base
|
||||||
(provide (all-defined-out)) ;; <- don't forget this line in your config submodule!
|
(provide (all-defined-out)) ;; <- don't forget this line in your config submodule!
|
||||||
(require pollen/setup racket/path)
|
(require pollen/setup racket/path)
|
||||||
(define (omitted-path? p) (path-has-extension? p #"sh"))
|
(define (omitted-path? p) (path-has-extension? p #"sh"))
|
||||||
(define publish-directory "~/Dropbox/dropbox_xray/typographyforlawyers.com/public/"))
|
(define publish-directory "~/Dropbox/dropbox_xray/typographyforlawyers.com/public/"))
|
||||||
|
|
||||||
|
(provide ie-payment-warning)
|
||||||
|
(define (ie-payment-warning)
|
||||||
|
(define div (default-tag-function 'div))
|
||||||
|
(define p (default-tag-function 'p))
|
||||||
|
(define strong (default-tag-function 'strong))
|
||||||
|
◊div[#:class "ie reader-note"]{◊p{Because of security considerations, my payment links ◊strong{do not support Internet Explorer 11 or earlier}. Please use a different browser.}})
|
Reference in New Issue