summaryrefslogtreecommitdiffhomepage
path: root/src/world/coins/us/index.gsp
blob: 68cda5d5d6177a23d4d1b40655789c79ebfc8c45 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
html lang="en" {
	head {
		__include(head.gsp)
		title {-American Coins}
	}

	body {
		nav {
			__include(nav.gsp)
			__include(world/nav.coins.gsp)
		}

		main {
			section {
				header {
					h1 {-American Coins}
				}
			}

			br{}br{}

			section { __include(table-key.gsp) }

			br{}br{}

			section .cl-section .slant-down {
				div {
					table .coin-table cellspacing="0" {
						thead {
							tr {
								th colspan="5" {-Presidential Dollars}
							}
							tr {
								th colspan="2" {-President}
								th colspan="1" {-Denver}
								th colspan="1" {-Philadelphia}
								th colspan="1" {-San Francisco}
							}
						}

						tbody { __esyscmd(gen-pres) }
					}
				}
			}

			section { __include(foot.gsp) }
		}
	}
}