-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #38 from lsst-sqre/tickets/DM-41917
DM-41917: Add authors to the main column of text
- Loading branch information
Showing
15 changed files
with
111 additions
and
84 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
/* | ||
* Styles for the author list that appears below the title. | ||
*/ | ||
|
||
.technote-status + .technote-inline-authors { | ||
margin-top: 2rem; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
{% if technote.metadata.status.state != "stable" %} | ||
<aside class="technote-status technote-status--{{ technote.metadata.status.state.value }}"> | ||
<p class="technote-status__note" data-technote-status="{{ technote.metadata.status.state.value }}"> | ||
{% if technote.metadata.status.state == "draft" %} | ||
This is a draft. | ||
{% if technote.metadata.status.note %} | ||
{{ technote.metadata.status.note }} | ||
{% endif %} | ||
</p> | ||
|
||
{% elif technote.metadata.status.state == "deprecated" %} | ||
This document is deprecated. | ||
{% if technote.metadata.status.note %} | ||
{{ technote.metadata.status.note }} | ||
{% endif %} | ||
</p> | ||
|
||
{% if technote.metadata.status.supersceding_urls %} | ||
<p>See instead:</p> | ||
|
||
<ul> | ||
{% for link in technote.metadata.status.supersceding_urls %} | ||
<li><a href="{{ link.url }}" class="technote-superceding-url">{{ link.title or link.url }}</a></li> | ||
{% endfor %} | ||
</ul> | ||
{% endif %} | ||
|
||
{% elif technote.metadata.status.state == "other" %} | ||
{{ status.note }} | ||
</p> | ||
{% endif %} | ||
</aside> | ||
{% endif %} | ||
|
||
{% if technote.metadata.authors %} | ||
<aside class="technote-inline-authors"> | ||
|
||
<p class="sr-only">By:</p> | ||
|
||
<ul class="technote-inline-comma-list technote-sidebar-author-list"> | ||
{% for author in technote.metadata.authors %} | ||
<li class="technote-sidebar-author-list__author p-author">{{ author.name.plain_text_name }}</li> | ||
{% endfor %} | ||
</ul> | ||
|
||
</aside> | ||
{% endif %} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters