diff options
author | Friendika <info@friendika.com> | 2011-10-17 14:55:46 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-10-17 14:55:46 -0700 |
commit | f0dc77ab6c102d83e7f98336b522f9c7b4a4a14f (patch) | |
tree | d8622e943809f497f2cf53be65e104ec394f6bc0 /view/profile_advanced.tpl | |
parent | 278433eac75639052686f70e98621466d6c44df3 (diff) | |
parent | e15aab9b755e8696d8dd7984e8de4ea5591e0caf (diff) | |
download | volse-hubzilla-f0dc77ab6c102d83e7f98336b522f9c7b4a4a14f.tar.gz volse-hubzilla-f0dc77ab6c102d83e7f98336b522f9c7b4a4a14f.tar.bz2 volse-hubzilla-f0dc77ab6c102d83e7f98336b522f9c7b4a4a14f.zip |
Merge branch 'pull'
Diffstat (limited to 'view/profile_advanced.tpl')
-rw-r--r-- | view/profile_advanced.tpl | 143 |
1 files changed, 143 insertions, 0 deletions
diff --git a/view/profile_advanced.tpl b/view/profile_advanced.tpl new file mode 100644 index 000000000..136edf8d7 --- /dev/null +++ b/view/profile_advanced.tpl @@ -0,0 +1,143 @@ +<h2>$title</h2> + +<dl> + <dt>$profile.fullname.0</dt> + <dd>$profile.fullname.1</dd> +</dl> + +{{ if $profile.gender }} +<dl> + <dt>$profile.gender.0</dt> + <dd>$profile.gender.1</dd> +</dl> +{{ endif }} + +{{ if $profile.birthday }} +<dl> + <dt>$profile.birthday.0</dt> + <dd>$profile.birthday.1</dd> +</dl> +{{ endif }} + +{{ if $profile.age }} +<dl> + <dt>$profile.age.0</dt> + <dd>$profile.age.1</dd> +</dl> +{{ endif }} + +{{ if $profile.marital }} +<dl> + <dt><span class="heart">♥</span> $profile.marital.0</dt> + <dd>$profile.marital.1 {{ if $profile.marital.with }}($profile.marital.with){{ endif }}</dd> +</dl> +{{ endif }} + +{{ if $profile.sexual }} +<dl> + <dt>$profile.sexual.0</dt> + <dd>$profile.sexual.1</dd> +</dl> +{{ endif }} + +{{ if $profile.homepage }} +<dl> + <dt>$profile.homepage.0</dt> + <dd>$profile.homepage.1</dd> +</dl> +{{ endif }} + +{{ if $profile.politic }} +<dl> + <dt>$profile.politic.0</dt> + <dd>$profile.politic.1</dd> +</dl> +{{ endif }} + +{{ if $profile.religion }} +<dl> + <dt>$profile.religion.0</dt> + <dd>$profile.religion.1</dd> +</dl> +{{ endif }} + +{{ if $profile.about }} +<dl> + <dt>$profile.about.0</dt> + <dd>$profile.about.1</dd> +</dl> +{{ endif }} + +{{ if $profile.interest }} +<dl> + <dt>$profile.interest.0</dt> + <dd>$profile.interest.1</dd> +</dl> +{{ endif }} + + +{{ if $profile.contact }} +<dl> + <dt>$profile.contact.0</dt> + <dd>$profile.contact.1</dd> +</dl> +{{ endif }} + + +{{ if $profile.music }} +<dl> + <dt>$profile.music.0</dt> + <dd>$profile.music.1</dd> +</dl> +{{ endif }} + + +{{ if $profile.book }} +<dl> + <dt>$profile.book.0</dt> + <dd>$profile.book.1</dd> +</dl> +{{ endif }} + + +{{ if $profile.tv }} +<dl> + <dt>$profile.tv.0</dt> + <dd>$profile.tv.1</dd> +</dl> +{{ endif }} + + +{{ if $profile.film }} +<dl> + <dt>$profile.film.0</dt> + <dd>$profile.film.1</dd> +</dl> +{{ endif }} + + +{{ if $profile.romance }} +<dl> + <dt>$profile.romance.0</dt> + <dd>$profile.romance.1</dd> +</dl> +{{ endif }} + + +{{ if $profile.work }} +<dl> + <dt>$profile.work.0</dt> + <dd>$profile.work.1</dd> +</dl> +{{ endif }} + +{{ if $profile.education }} +<dl> + <dt>$profile.education.0</dt> + <dd>$profile.education.1</dd> +</dl> +{{ endif }} + + + + |