Store all posts in the Sone.
[Sone.git] / src / main / resources / templates / insert / sone.xml
1 <?xml version="1.0" encoding="utf-8" ?>
2 <sone>
3
4         <name><% currentSone.name|html></name>
5
6         <profile>
7                 <first-name><% currentSone.profile.firstName|html></first-name>
8                 <middle-name><% currentSone.profile.middleName|html></middle-name>
9                 <last-name><% currentSone.profile.lastName|html></last-name>
10         </profile>
11
12         <posts>
13                 <%foreach posts post>
14                         <post>
15                                 <time><% post.time></time>
16                                 <text><% post.text|html></text>
17                         </post>
18                 <%/foreach>
19         </posts>
20
21 </sone>