pinafore/routes/_components/Avatar.html
2018-01-14 11:36:31 -08:00

16 lines
279 B
HTML

<img alt="Profile picture for {{account.acct}}" src="{{account.avatar_static}}">
<style>
img {
width: 48px;
height: 48px;
margin: 10px auto;
border-radius: 4px;
}
</style>
<script>
export default {
data: () => ({
account: null
})
}
</script>