AvalonDocumentationEngine/views/articles/blocks/LunchBox.ejs
MeowcaTheoRange 3fd3805552 Updates
2023-01-04 22:18:04 -06:00

24 lines
No EOL
1.6 KiB
Text

<div class="MessageBox" style="margin: 8px 0;
background-color:var(--main-fg);
border-radius:4px;
border:2px solid var(--main);
padding:16px;
display: grid;
grid-template-columns: <%- locals.width ?? "200" %>px auto;
grid-template-rows: max-content max-content;
gap:8px;">
<div style="grid-row: 1 / 3;aspect-ratio: 2/3;">
<img src="<%- locals.imageURL ?? "" %>" width="<%- locals.width ?? "200" %>" />
</div>
<div style="display: flex;flex-direction: column;gap:8px;padding: 16px;">
<h2 style="margin:0;"><%- locals.fullName ?? "Jane Doe" %></h2>
<small><%- locals.pronouns ?? "she/her" %></small>
<p><%- locals.birthday ?? "January 1, 1970" %></p>
<p><%- locals.gender ?? "Female" %>, <%- locals.preference ?? "Asexual (deceased)" %></p>
<small><%- locals.attribution ?? "<a href='https://en.wikipedia.org/wiki/John_Doe'>John Doe on Wikipedia</a>" %></small>
</div>
<div style="display: flex;flex-direction: column;gap:8px;padding: 16px;">
<h3 style="margin:0;">About</h3>
<p><%- locals.description ?? `John Doe (male) and Jane Doe (female) are multiple-use placeholder names that are used when the true name of a person is unknown or is being intentionally concealed. In the context of law enforcement in the United States, such names are often used to refer to a corpse whose identity is unknown or unconfirmed. These names are also often used to refer to a hypothetical "everyman" in other contexts, in a manner similar to John Q. Public or "Joe Public". There are many variants to the above names, including John Roe, Richard Roe, Jane Roe, Baby Doe, and Janie Doe/Johnny Doe (for children).` %></p>
</div>
</div>