diff options
author | Steven Barth <steven@midlink.org> | 2008-05-08 16:04:18 +0000 |
---|---|---|
committer | Steven Barth <steven@midlink.org> | 2008-05-08 16:04:18 +0000 |
commit | 214bfdc19887c3df373d1323afd9738eee4f64ca (patch) | |
tree | 1b3660fd9a8db552d50c9ef9d11b9dee35bf8fac /modules/freifunk/src/view/public_index | |
parent | aa9ccf77c6648515ba58c37b9345cdbd561028db (diff) |
* Fixed #2030
Diffstat (limited to 'modules/freifunk/src/view/public_index')
-rw-r--r-- | modules/freifunk/src/view/public_index/contact.htm | 13 | ||||
-rw-r--r-- | modules/freifunk/src/view/public_index/index.htm | 11 |
2 files changed, 24 insertions, 0 deletions
diff --git a/modules/freifunk/src/view/public_index/contact.htm b/modules/freifunk/src/view/public_index/contact.htm new file mode 100644 index 0000000000..221dc89ccc --- /dev/null +++ b/modules/freifunk/src/view/public_index/contact.htm @@ -0,0 +1,13 @@ +<%+header%> +<% local contact = ffluci.model.uci.sections("freifunk").contact %> +<h1><%:contact Kontakt%></h1> +<table cellspacing="0" cellpadding="6"> + <tr><th><%:nickname Pseudonym%>:</th><td><%=contact.nickname%></td></tr> + <tr><th><%:name Name%>:</th><td><%=contact.name%></td></tr> + <tr><th><%:mail E-Mail%>:</th><td><%=contact.mail%></td></tr> + <tr><th><%:phone Telefon%>:</th><td><%=contact.phone%></td></tr> + <tr><th><%:location Standort%>:</th><td><%=contact.location%></td></tr> + <tr><th><%:geocoord Geokoordinaten%>:</th><td><%=contact.geo%></td></tr> + <tr><th><%:note Notiz%>:</th><td><%=contact.note%></td></tr> +</table> +<%+footer%>
\ No newline at end of file diff --git a/modules/freifunk/src/view/public_index/index.htm b/modules/freifunk/src/view/public_index/index.htm new file mode 100644 index 0000000000..6c7fe85883 --- /dev/null +++ b/modules/freifunk/src/view/public_index/index.htm @@ -0,0 +1,11 @@ +<%+header%> +<% local ff = ffluci.model.uci.sections("freifunk") %> +<h1><%:hellonet Hallo und willkommen im Netz von%> <%=ff.community.name%>!</h1> +<p><%:public1 Wir sind eine Initiative zur Schaffung eines freien, offenen und unabhängigen Funknetzwerks auf WLAN-Basis.%><br /> +<%:public2 Dies ist der Zugangspunkt %><%=ffluci.sys.hostname()%>. <%:public3 Er wird betrieben von %> +<a href="<%=controller%>/public/index/contact"><%=ff.contact.nickname%></a>.</p> +<p><%:public4 Weitere Informationen zur globalen Freifunkinitiative findest du unter%> <a href="http://freifunk.net">Freifunk.net</a>.<br /> +<%:public5 Hast du Interesse an diesem Projekt, dann wende dich an deine lokale Gemeinschaft%> <a href="<%=ff.community.homepage%>"><%=ff.community.name%></a>.</p> +<p><strong><%:note Hinweis%></strong>: <%:public6 Der Internetzugang über das experimentelle Freifunknetz ist an technische und organisatorische Bedingungen geknüpft und deshalb möglicherweise +nicht (immer) gewährleistet.%></p> +<%+footer%>
\ No newline at end of file |