diff options
author | fabrixxm <fabrix.xm@gmail.com> | 2013-05-08 04:23:17 -0400 |
---|---|---|
committer | fabrixxm <fabrix.xm@gmail.com> | 2013-05-08 04:23:17 -0400 |
commit | 5e1980becf69a4c65489bed6f94fa730ec8ef4bf (patch) | |
tree | 2f1f1c7540c62c049dd314b0155380c6cb4526b5 /view/tpl/atom_feed_dfrn.tpl | |
parent | c753fa19d289e936131aad706cf31bcfe111b4c1 (diff) | |
download | volse-hubzilla-5e1980becf69a4c65489bed6f94fa730ec8ef4bf.tar.gz volse-hubzilla-5e1980becf69a4c65489bed6f94fa730ec8ef4bf.tar.bz2 volse-hubzilla-5e1980becf69a4c65489bed6f94fa730ec8ef4bf.zip |
remove "internal" templates, use "tpl/" folder for smarty3 templates,
move smarty3 templates in "tpl/" folder, add util/precompile_smarty.php utility, add precompiled templates
Diffstat (limited to 'view/tpl/atom_feed_dfrn.tpl')
-rwxr-xr-x[-rw-r--r--] | view/tpl/atom_feed_dfrn.tpl | 29 |
1 files changed, 17 insertions, 12 deletions
diff --git a/view/tpl/atom_feed_dfrn.tpl b/view/tpl/atom_feed_dfrn.tpl index 0bae62b52..87d78a518 100644..100755 --- a/view/tpl/atom_feed_dfrn.tpl +++ b/view/tpl/atom_feed_dfrn.tpl @@ -1,3 +1,8 @@ +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} <?xml version="1.0" encoding="utf-8" ?> <feed xmlns="http://www.w3.org/2005/Atom" xmlns:thr="http://purl.org/syndication/thread/1.0" @@ -10,20 +15,20 @@ xmlns:ostatus="http://ostatus.org/schema/1.0" xmlns:statusnet="http://status.net/schema/api/1/" > - <id>$feed_id</id> - <title>$feed_title</title> - <generator uri="http://friendica.com" version="$version">Friendica</generator> + <id>{{$feed_id}}</id> + <title>{{$feed_title}}</title> + <generator uri="http://friendica.com" version="{{$version}}">Friendica</generator> <link rel="license" href="http://creativecommons.org/licenses/by/3.0/" /> - $hub - $salmon - $community + {{$hub}} + {{$salmon}} + {{$community}} - <updated>$feed_updated</updated> + <updated>{{$feed_updated}}</updated> <author> - <name dfrn:updated="$namdate" >$name</name> - <uri dfrn:updated="$uridate" >$profile_page</uri> - <link rel="photo" type="image/jpeg" dfrn:updated="$picdate" media:width="175" media:height="175" href="$photo" /> - <link rel="avatar" type="image/jpeg" dfrn:updated="$picdate" media:width="175" media:height="175" href="$photo" /> - $birthday + <name dfrn:updated="{{$namdate}}" >{{$name}}</name> + <uri dfrn:updated="{{$uridate}}" >{{$profile_page}}</uri> + <link rel="photo" type="image/jpeg" dfrn:updated="{{$picdate}}" media:width="175" media:height="175" href="{{$photo}}" /> + <link rel="avatar" type="image/jpeg" dfrn:updated="{{$picdate}}" media:width="175" media:height="175" href="{{$photo}}" /> + {{$birthday}} </author> |