Paul Hoffman

XML source file

---
services:
  - &flapjackInstruction
    name: Flapjack Instruction
    id: s001
    description: >-
      How to flip, flop, and – most important of all – cite hotcakes.
  - &mediatedSobbing
    name: Mediated Sobbing
    id: s002
    description: >-
      Make use of our experts’ expertise in extracting maximum melancholy.
  - ¤tIrrelevancy
    name: Current Irrelevancy
    id: s003
    description: >-
      Keep up to date on all the meaninglessness that’s out there.
      (Well, selected meaninglessnesses anyhow…)
libraries:
  - name: St. Alphonso’s Pancake Library
    id: L001
    description: >-
      New England’s largest circulating pancake
      library with over 300,000 flapjacks, hotcakes,
      and Pfannküchen from 47 countries.  Notable
      for its collection of unleavened incunabula.
    location:
      address:
        street:     1539 Flipside Blvd.
        city:       Damariscotta
        state:      ME
        postalcode: 04543
        country:    USA
    hours:
      - [ Sunday,    Noon, 10 pm ]
      - [ Monday,    8 am, 10 pm ]
      - [ Tuesday,   8 am, 10 pm ]
      - [ Wednesday, 8 am, 10 pm ]
      - [ Thursday,  8 am, 10 pm ]
      - [ Friday,    8 am,  9 pm ]
      - [ Saturday,  Noon,  9 pm ]
    contact: thegriddle@stalphonsospancakelibrary.com
    departments:
      - name: Reference
        description: ~
        staff:
          - name: Ulysses K. Fishwick
            title: Associate Flipper
            email: fishwick@stalphonsospancakelibrary.com
            phone: 555-1234
      - name: Circulation
        description: ~
        staff:
          - name: Yolanda P. Ipswich
            title: Circulation Circulator
            email: yolanda@stalphonsospancakelibrary.com
            phone: 555-5678
      - name: Syrup Is Us
        description: ~
        staff:
          - name: Hilary Harpmuscle
            title: Assistant Stirrer
            email: karl@stalphonsospancakelibrary.com
            phone: 555-0192
    collections:
      - name: Incunabula
        description: >
          Carefully preserved specimens from the first
          half-century of flapjacks.
        size: 814
    services:
      - *flapjackInstruction
  - name: Library of Sorrows
    id: L002
    description: >-
      Prepare to mope!
    location:
      address:
        street:     P.O. Box 1234
        city:       Emporia
        state:      KS
        postalcode: 74397
        country:    USA
    hours:
      - [ Monday,     9 am, 5 pm ]
      - [ Tuesday,    9 am, 5 pm ]
      - [ Wednesday,  Noon, 8 pm ]
      - [ Thursday,   9 am, 5 pm ]
      - [ Friday,     9 am, 5 pm ]
      - [ Saturday,   Noon, 5 pm ]
    contact: woe@alasalack.org
    departments:
      - name: Melancholias
        description: ~
      - name: Interlibrary Despair
        description: ~
        staff:
          - name: M. E. Wye
            title: Associate Wailer of Woe
            email: wyeme@alasalack.org
            phone: 234-5678
    collections:
      - name: Woes of the World
        description: >
          Selected afflictions and suffering in 47 languages.
        size: 35000
      - name: Picturing Despondency
        description: >
          Images of despair from Mediæval times to the present.
        size: 4200
    services:
      - *mediatedSobbing
      - *currentIrrelevancy
  - name: Biblioteko je librojn esperantojn
    id: L003
    description: >-
      Malgranda biblioteko je vortojn enuigajn.
    location:
      address:
        street:     [ 23 Strato Brasiko, Malbona Kvartalo ]
        city:       Urbaĉo
        state:      Ŝtiparo
        postalcode: T94/K27
        country:    Malregno
    hours:
      - [ Monday,     10 am, 4 pm ]
      - [ Tuesday,    10 am, 4 pm ]
      - [ Wednesday,  10 am, 4 pm ]
      - [ Thursday,   10 am, 4 pm ]
      - [ Friday,     10 am, 1 pm ]
    contact: malpersono@malmalmalo.com
    departments:
      - name: Ĉambro Malgranda
        description: >-
          None.
        staff:
          - name: N. O. Won
            title: Associate in Absentia
            email: nil@nibi.com
            phone: 000-0000
    collections:
      - name: Kvartokvarto
        description: >
          Libroj kvartaĝoj pe antaŭ kaj ksprabjaŭ.
        size: 404
    services:
      - *currentIrrelevancy
...
<?xml version="1.0" encoding="utf-8" standalone="no" ?>
<?xml-stylesheet type="text/css" href="libinfo.css" ?>

    <libraries>
[% FOREACH library IN libraries -%]
        <library id="">
            <name>[% library.name %]</name>
            <about>
                <description>[% library.description %]
                </description>
                <address>[% SET addr = library.location.address %]
[% FOREACH street IN addr.street -%]
                    <street>[% street %]</street>
[% END -%]
                    <city>[% addr.city %]</city>
                    <state>[% addr.state %]</state>
                    <postalcode>[% addr.postalcode %]</postalcode>
                    <country>[% addr.country || 'USA' %]</country>
                </address>
                <hours>[% SET hours = library.hours %]
[% FOREACH hours IN library.hours -%]
                    <timespan>
                        <day>[% hours.0 %]</day>
                        <begin>[% hours.1 %]</begin>
                        <end>[% hours.2 %]</end>
                    </timespan>
[% END -%]
                </hours>
                <contact>[% library.contact %]</contact>
                <departments>
[% FOREACH dept IN library.departments -%]
                    <department>
                        <name>[% dept.name %]</name>
                        <description>[% dept.description %]</description>
                        <staff>
[% FOREACH person IN dept.staff -%]
                            <person>
                                <name>[% person.name %]</name>
                                <title>[% person.title %]</title>
                                <email>[% person.email %]</email>
                                <phone>[% person.phone %]</phone>
                            </person>
[% END -%]
                        </staff>
                    </department>
[% END -%]
                </departments>
                <collections>
[% FOREACH coll IN library.collections -%]
                    <collection>
                        <name>[% coll.name %]</name>
                        <description>[% coll.description %]</description>
                        <size>[% coll.size %]</size>
                    </collection>
[% END -%]
                </collections>
                <services>
[% FOREACH service IN library.services -%]
                    <service>
                        <name>[% service.name %]</name>
                        <description>[% service.description %]</description>
                    </service>
[% END -%]
                </services>
            </about>
        </library>
[% END -%]
    </libraries>
</libinfo>
About This SiteSite MapPrivacy StatementContact Me ◆ Copyright © 2006 Paul Hoffman ◆ Last modified 2006-04-29 12:02

Valid XHTML 1.0 Transitional Valid CSS!