It looks like you're offline.
Open Library logo
additional options menu

This doc was last edited by AnandBot October 16, 2009.

plugin upstream
Templates in the website are disabled now. Editing them will not have any effect on the live website.
   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
$def with (page)

$var title: $page.displayname

$ _t = i18n.get_namespace('/type/user')
$ _ = i18n.get_namespace('/mode/view')

<div id="header">
        <div style="float:left;padding-left:10px;padding-right:15px;"></div>
        <div id="title"> $page.displayname</div>
</div>


<div class="contenttext">

<p>
$if page.get('website'):
    $for url in page.website: <a href="$url">$url</a><br />
</p>

$:sanitize(format(page.description))

</div>

<br clear="all" />
<span class="subhead-emphasis" style="padding-left: 45px;">$_t.users_activity(page.displayname):</span>

$:macros.RecentChanges(author=page, limit=50)