Hi! Want to please include the following fonts to http://webconverger.org

<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,700' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Arvo:700' rel='stylesheet' type='text/css'>

How do I do that? I suspect I need to edit a template file somewhere. Not sure where, not sure how to add it into the git repo. From there I'm at ease with local.css.

You can actually do this on a per-page basis without template modifications using the [[!ikiwiki/directive/meta]] directive on a page:

[[!meta link="http://fonts.googleapis.com/css?family=Open+Sans:400,700" rel="stylesheet" type="text/css"]]
[[!meta link="http://fonts.googleapis.com/css?family=Arvo:700" rel="stylesheet" type="text/css"]]

Although this is blocked by the [[!ikiwiki/plugin/htmlscrubber]] so you have to disable it for at least that page in your site's configuration:

# PageSpec specifying pages not to scrub
htmlscrubber_skip: fontypage

If you do want to add the fonts to every page, templates are the way. Get a copy of ikiwiki's page.tmpl from here, modify to add the html and put it in the templates/ directory of your site in git (or just go to the templates page on your site and upload it as an attachment).

Comment by joey Wed Dec 7 16:16:48 2011