You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It would be nice to have the scheme.org menu on the individual cookbook pages. I'm afraid I cannot test this, but would something like the following hand-written changes to www.scm work?
First, define the header:
(define header '(header
(ul (@ (class "menu"))
(li (a (@ (href "https://www.scheme.org")) "Home"))
(li (@ (class "active")) "Docs")
(li (a (@ (href "https://community.scheme.org")) "Community"))
(li (a (@ (href "https://standards.scheme.org")) "Standards"))
(li (a (@ (href "https://implementations.scheme.org")) "Implementations")))))
Add to main page by changing line 127 to splice in the header:
`(,header (h1 (@ (id "logo")) "Scheme Cookbook")
And add to each recipe by changing line 163 to splice in the header:
`(,header ,@(recipe-sxml recipe)
The text was updated successfully, but these errors were encountered:
It would be nice to have the scheme.org menu on the individual cookbook pages. I'm afraid I cannot test this, but would something like the following hand-written changes to www.scm work?
First, define the header:
Add to main page by changing line 127 to splice in the header:
And add to each recipe by changing line 163 to splice in the header:
The text was updated successfully, but these errors were encountered: