-
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.
mvp-tema-i18n (#9): detalhes internos de páginas agora são mais reusá…
…veis
- Loading branch information
Showing
9 changed files
with
189 additions
and
277 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 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 |
---|---|---|
@@ -1,3 +1,83 @@ | ||
<!-- _includes/commune/html-dl-rem-archivum.html --> | ||
{% assign rem = include.rem %} | ||
|
||
TODO: html-dl-rem-archivum | ||
<dl> | ||
<!-- Download of files --> | ||
{% if rem.datum.archivum %} | ||
<dt> | ||
{% _🗣️ download_nomen 🗣️_ %} | ||
</dt> | ||
<dd> | ||
<dl style="padding-left: 2em;"> | ||
{%- if rem.datum.archivum.referens_officinale %} | ||
<dt> | ||
{% _🗣️ referens_officinale_nomen 🗣️_ %} | ||
</dt> | ||
{% for situs in rem.datum.archivum.referens_officinale %} | ||
<dd> | ||
<a href="{{ situs.iri }}" class="btn btn-secondary"> | ||
{{ situs.nomen | default: situs.iri }} | ||
</a> | ||
</dd> | ||
{%- endfor %} | ||
{% endif %} | ||
|
||
{%- if rem.datum.archivum %} | ||
|
||
{%- if rem.datum.archivum.schemam['csv+hxl'] %} | ||
<dt> | ||
{% _🗣️ 👁️eng-Latn👁️ _👂CSV+HXL👂_ 👁️eng-Latn👁️ 🗣️_ %} | ||
</dt> | ||
{% for situs in rem.datum.archivum.schemam['csv+hxl'] %} | ||
<dd> | ||
<a href="{{ situs.iri }}" class="btn btn-primary"> | ||
{{ situs.nomen | default: situs.iri }} | ||
</a> | ||
</dd> | ||
{%- endfor %} | ||
{% endif %} | ||
|
||
{%- if rem.datum.archivum.schemam.graphql %} | ||
<dt> | ||
{% _🗣️ graphql_schemam_nomen 🗣️_ %} | ||
</dt> | ||
{% for rem2 in rem.datum.archivum.schemam.graphql %} | ||
<dd> | ||
<a href="{{ rem2.iri }}" class="btn btn-primary"> | ||
{{ rem2.nomen | default: rem2.iri }} | ||
</a> | ||
</dd> | ||
{%- endfor %} | ||
{% endif %} | ||
|
||
{%- if rem.datum.archivum.schemam.json %} | ||
<dt> | ||
{% _🗣️ json_schemam_nomen 🗣️_ %} | ||
</dt> | ||
{% for rem2 in rem.datum.archivum.schemam.json %} | ||
<dd> | ||
<a href="{{ rem2.iri }}" class="btn btn-primary"> | ||
{{ rem2.nomen | default: rem2.iri }} | ||
</a> | ||
</dd> | ||
{%- endfor %} | ||
{% endif %} | ||
|
||
{%- if rem.datum.archivum.schemam.sql %} | ||
<dt> | ||
{% _🗣️ SQL_abbreviationem_nomen 🗣️_ %} | ||
</dt> | ||
{% for rem2 in rem.datum.archivum.schemam.sql %} | ||
<dd> | ||
<a href="{{ rem2.iri }}" class="btn btn-primary"> | ||
{{ rem2.nomen | default: rem2.iri }} | ||
</a> | ||
</dd> | ||
{%- endfor %} | ||
{% endif %} | ||
|
||
{% endif %} | ||
</dl> | ||
</dd> | ||
{% endif %} | ||
</dl> |
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 |
---|---|---|
@@ -1,2 +1,51 @@ | ||
<!-- _includes/commune/html-dl-rem-circa.html --> | ||
TODO html-dl-rem-circa | ||
{% assign rem = include.rem %} | ||
|
||
<dl> | ||
<!-- Web sites --> | ||
{% if rem.datum.situs_interretialis %} | ||
<dt> | ||
{% _🗣️ situs_interretialis_nomen 🗣️_ %} | ||
</dt> | ||
<dd> | ||
<dl style="padding-left: 2em;"> | ||
{%- if rem.datum.situs_interretialis.referens_officinale %} | ||
<dt> | ||
{% _🗣️ referens_officinale_nomen 🗣️_ %} | ||
</dt> | ||
{% for situs in rem.datum.situs_interretialis.referens_officinale %} | ||
<dd> | ||
<a href="{{ situs.iri }}"> | ||
{{ situs.nomen | default: situs.iri }} | ||
</a> | ||
</dd> | ||
{%- endfor %} | ||
{% endif %} | ||
{%- if rem.datum.situs_interretialis.vicipaedia %} | ||
<dt> | ||
{% _🗣️ vicipaediam_nomen 🗣️_ %} | ||
</dt> | ||
{% for situs in rem.datum.situs_interretialis.vicipaedia %} | ||
<dd> | ||
<a href="{{ situs.iri }}"> | ||
{{ situs.nomen | default: situs.iri }} | ||
</a> | ||
</dd> | ||
{%- endfor %} | ||
{% endif %} | ||
{%- if rem.datum.wikidatum %} | ||
<dt> | ||
{% _🗣️ wikidatum_nomen 🗣️_ %} | ||
</dt> | ||
{% for situs in rem.datum.wikidatum %} | ||
<dd> | ||
<a href="{{ situs.codicem | prepend: 'https://www.wikidata.org/wiki/' }}"> | ||
{{ situs.codicem }} | ||
</a> | ||
</dd> | ||
{%- endfor %} | ||
{% endif %} | ||
</dl> | ||
</dd> | ||
{% endif %} | ||
</dl> |
Oops, something went wrong.