GaryJJSpate (talk | contribs) No edit summary |
GaryJJSpate (talk | contribs) No edit summary |
||
| Line 1: | Line 1: | ||
<includeonly><div class="vault-infobox"> | <includeonly> | ||
<div class="vault-infobox"> | |||
<div class="vault-infobox-header">{{{title}}}</div> | <div class="vault-infobox-header">{{{title}}}</div> | ||
{{#if:{{{author|}}}|<div class="vault-infobox-row"><span class="vault-infobox-k">AUTHOR</span><span class="vault-infobox-v">{{{author}}}</span></div>}} | |||
{{#if:{{{publisher|}}}|<div class="vault-infobox-row"><span class="vault-infobox-k">PUBLISHER</span><span class="vault-infobox-v">{{{publisher}}}</span></div>}} | {{#if:{{{image|}}}| | ||
{{#if:{{{published|}}}|<div class="vault-infobox-row"><span class="vault-infobox-k">PUBLISHED</span><span class="vault-infobox-v">{{{published}}}</span></div>}} | <div class="vault-infobox-image"> | ||
{{#if:{{{isbn|}}}|<div class="vault-infobox-row"><span class="vault-infobox-k">ISBN</span><span class="vault-infobox-v">{{{isbn}}}</span></div>}} | [[File:{{{image}}}|280px]] | ||
{{#if:{{{pages|}}}|<div class="vault-infobox-row"><span class="vault-infobox-k">PAGES</span><span class="vault-infobox-v">{{{pages}}}</span></div>}} | {{#if:{{{caption|}}}| | ||
{{#if:{{{genre|}}}|<div class="vault-infobox-row"><span class="vault-infobox-k">GENRE</span><span class="vault-infobox-v">{{{genre}}}</span></div>}} | <div class="vault-infobox-caption">{{{caption}}}</div> | ||
</div></includeonly><noinclude> | }} | ||
</div> | |||
}} | |||
{{#if:{{{author|}}}| | |||
<div class="vault-infobox-row"> | |||
<span class="vault-infobox-k">AUTHOR</span> | |||
<span class="vault-infobox-v">{{{author}}}</span> | |||
</div> | |||
}} | |||
{{#if:{{{publisher|}}}| | |||
<div class="vault-infobox-row"> | |||
<span class="vault-infobox-k">PUBLISHER</span> | |||
<span class="vault-infobox-v">{{{publisher}}}</span> | |||
</div> | |||
}} | |||
{{#if:{{{published|}}}| | |||
<div class="vault-infobox-row"> | |||
<span class="vault-infobox-k">PUBLISHED</span> | |||
<span class="vault-infobox-v">{{{published}}}</span> | |||
</div> | |||
}} | |||
{{#if:{{{isbn|}}}| | |||
<div class="vault-infobox-row"> | |||
<span class="vault-infobox-k">ISBN</span> | |||
<span class="vault-infobox-v">{{{isbn}}}</span> | |||
</div> | |||
}} | |||
{{#if:{{{pages|}}}| | |||
<div class="vault-infobox-row"> | |||
<span class="vault-infobox-k">PAGES</span> | |||
<span class="vault-infobox-v">{{{pages}}}</span> | |||
</div> | |||
}} | |||
{{#if:{{{type|}}}| | |||
<div class="vault-infobox-row"> | |||
<span class="vault-infobox-k">TYPE</span> | |||
<span class="vault-infobox-v">{{{type}}}</span> | |||
</div> | |||
}} | |||
{{#if:{{{genre|}}}| | |||
<div class="vault-infobox-row"> | |||
<span class="vault-infobox-k">GENRE</span> | |||
<span class="vault-infobox-v">{{{genre}}}</span> | |||
</div> | |||
}} | |||
{{#if:{{{subject|}}}| | |||
<div class="vault-infobox-row"> | |||
<span class="vault-infobox-k">SUBJECT</span> | |||
<span class="vault-infobox-v">{{{subject}}}</span> | |||
</div> | |||
}} | |||
{{#if:{{{related|}}}| | |||
<div class="vault-infobox-row"> | |||
<span class="vault-infobox-k">RELATED</span> | |||
<span class="vault-infobox-v">{{{related}}}</span> | |||
</div> | |||
}} | |||
{{#if:{{{status|}}}| | |||
<div class="vault-infobox-row"> | |||
<span class="vault-infobox-k">STATUS</span> | |||
<span class="vault-infobox-v vault-infobox-status">{{{status}}}</span> | |||
</div> | |||
}} | |||
</div> | |||
</includeonly> | |||
<noinclude> | |||
== Template:BookInfobox == | == Template:BookInfobox == | ||
'''Note:''' requires the ParserFunctions extension for the <code>{{#if:}}</code> conditionals | Renders the right-hand infobox card for books and published works. | ||
Used for: | |||
* Paranormal research books | |||
* Historical texts | |||
* Investigator memoirs | |||
* Fictional works with relevance to The Vault | |||
* Important publications within paranormal studies | |||
'''Note:''' requires the ParserFunctions extension for the <code>{{#if:}}</code> conditionals. | |||
'''Usage:''' | '''Usage:''' | ||
<pre> | <pre> | ||
{{BookInfobox | {{BookInfobox | ||
|title= | |title=Extra-Sensory Perception | ||
|author= | |author=J. B. Rhine | ||
|publisher= | |publisher=Boston Society for Psychic Research | ||
|published= | |published=1934 | ||
| | |pages=372 | ||
| | |type=Research publication | ||
|genre= | |genre=Parapsychology | ||
|subject=Extrasensory perception and psychic phenomena | |||
|related=[[Parapsychology]], [[Telepathy]], [[Psychokinesis]] | |||
|status=Historical work | |||
}} | }} | ||
</pre> | </pre> | ||
Place at the very top of the page | Place this at the very top of the page before the article text. | ||
=== Parameters === | === Parameters === | ||
* '''title''' — required | |||
* '''title''' — required. Book title | |||
* '''image''' — optional. Cover image filename | |||
* '''caption''' — optional. Image caption | |||
* '''author''' — recommended | * '''author''' — recommended | ||
* '''publisher''' — recommended | * '''publisher''' — recommended | ||
* '''published''' — recommended | * '''published''' — recommended | ||
* '''isbn''' — | * '''isbn''' — optional | ||
* '''pages''' — optional | * '''pages''' — optional | ||
* '''type''' — recommended. Publication type | |||
* '''genre''' — optional | * '''genre''' — optional | ||
* '''subject''' — recommended for Vault articles | |||
* '''related''' — optional. Related Vault subjects | |||
* '''status''' — optional. Historical importance/status | |||
=== Suggested type values === | |||
<pre> | |||
Research publication | |||
Academic work | |||
Investigator memoir | |||
Biography | |||
Historical text | |||
Novel | |||
Anthology | |||
</pre> | |||
=== Suggested status values === | |||
<pre> | |||
Historical work | |||
Influential publication | |||
Controversial work | |||
Foundational text | |||
Popular work | |||
</pre> | |||
[[Category:Vault Templates]] | [[Category:Vault Templates]] | ||
</noinclude> | </noinclude> | ||
Revision as of 21:09, 29 July 2026
Template:BookInfobox
Renders the right-hand infobox card for books and published works.
Used for:
- Paranormal research books
- Historical texts
- Investigator memoirs
- Fictional works with relevance to The Vault
- Important publications within paranormal studies
Note: requires the ParserFunctions extension for the conditionals.
Usage:
{{BookInfobox
|title=Extra-Sensory Perception
|author=J. B. Rhine
|publisher=Boston Society for Psychic Research
|published=1934
|pages=372
|type=Research publication
|genre=Parapsychology
|subject=Extrasensory perception and psychic phenomena
|related=[[Parapsychology]], [[Telepathy]], [[Psychokinesis]]
|status=Historical work
}}
Place this at the very top of the page before the article text.
Parameters
- title — required. Book title
- image — optional. Cover image filename
- caption — optional. Image caption
- author — recommended
- publisher — recommended
- published — recommended
- isbn — optional
- pages — optional
- type — recommended. Publication type
- genre — optional
- subject — recommended for Vault articles
- related — optional. Related Vault subjects
- status — optional. Historical importance/status
Suggested type values
Research publication Academic work Investigator memoir Biography Historical text Novel Anthology
Suggested status values
Historical work Influential publication Controversial work Foundational text Popular work
