-
Notifications
You must be signed in to change notification settings - Fork 0
/
new.wae
104 lines (85 loc) · 2.32 KB
/
new.wae
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
module home
import rightsidebar
import leftsidebar
site
new.html: main
end
def css(url, media)
link(rel="stylesheet", href=url, type="text/css", media=media);
end
def preface(year,doi)
a(href="http://dx.doi.org/10.1016/" + doi) year;
end
def sp
echo " ";
end
def content
ldtaHeading();
updates();
// tweets();
// program();
end
def ldtaHeading
p "12th International Workshop on Language Descriptions, Tools,
and Applications" ;
p "Tallinn, Estonia; March 31 - April 1, 2012; an ETAPS workshop" ;
end
def updates
section("News and updates") {
ul {
li { echo "Oct. 4, 2010:"; br;
a (href="call.html") "Call for Papers";
echo " and ";
a (href="tool.html") "Tool Challenge description";
echo " now available.";
}
}
}
end
def parTitle(title)
h1.title title;
end
def par
div.entry {
yield;
}
end
def section(title)
parTitle(title);
par yield;
end
def subtitle(title)
p.meta small title;
end
def main
html(xmlns='http://www.w3.org/1999/xhtml) {
head {
title "LDTA";
meta(http-equiv="content-type", content="text/html; charset=utf-8");
meta(name="keywords", content="Programming Debugging Language Descriptions Parsing Parsers Term Rewriting Attribute Grammars Functional Programming Debugging Model Driven Engineering Formal Methods Meta Programming");
meta(name="description", content="The International Workshop on Language Descriptions Tools and Applications");
meta(name="language", content="NL");
css("./style.css", "screen");
comment "Design by Free CSS Templates\nhttp://www.freecsstemplates.org\nReleased for free under a Creative Commons Attribution 2.5 License\n\nName : Compressed \nDescription: A three-column, fixed-width template fit for 1024x768 screen resolutions.\nVersion : 1.0\nReleased : 20080524";
}
body {
div#logo h1.logo "Workshop on Language Descriptions, Tools, and Applications";
div#page {
div.sidebar#sidebar1 {
br;
previous;
}
div#content div.bgtop div.bgbtm div.post content();
div.sidebar#sidebar2 {
br;
relatedLinks;
}
}
div(style="clear: both;") {
br;
div#footer p.legal "©2007 All Rights Reserved.
Design by <a(href="http://www.freecsstemplates.org/") "Free CSS Templates">";
}
}
}
end