offtopia.org/templates/people.html

52 lines
1015 B
HTML

<details
class="person"
$if(background)$
style="background-color: $background$;"
$endif$
>
<summary class="header">
$if(pfp)$
<img class="pfp" alt="$name$'s profile picture" src="$pfp$" />
$else$
<div class="pfp default-pfp">
<img alt="$name$ does not have a profile picture" src="/static/default-pfp.png" />
</div>
$endif$
<div class="info">
<span class="name">
$if(link)$
<a href="$link$">$name$</a>
$else$
$name$
$endif$
</span>
<span class="pronouns">
$if(pronouns)$
$pronouns$
$else$
?/?
$endif$
</span>
</div>
</summary>
<div class="guts">
$body$
$if(projects)$
<h3>$name$'s projects</h3>
<ul>
$for(projects)$
<li>
<details class="project">
<summary>
<a href="$url$">$name$</a> <i>click to read more</i>
</summary>
$desc$
</details>
</li>
$endfor$
</ul>
$endif$
</div>
</details>