Skip to content

Commit

Permalink
typo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
cedricdcc committed Sep 6, 2024
1 parent ad9743b commit 0715d4a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions pysubyt/templates/metadata.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
schema:itemListElement <{{base_uri}}{{crate.url}}{{index.path}}>;
{% endfor -%}
{% else -%}
schema:itemListElement <{{base_uri}}{{crate.crate_url}}>;
schema:itemListElement <{{base_uri}}{{crate.crateurl}}>;
{% endif -%}
{% endfor -%}
];
Expand Down Expand Up @@ -80,13 +80,13 @@
{% for crate in sets['project_crate'] -%}
{% if crate.index -%}
{% for index in crate.index -%}
<{{base_uri}}{{crate.url}}{{index.path}}> rdf:type schema:ListItem, schema:CreativeWork ;
<{{base_uri}}{{crate.crateurl}}{{index.path}}> rdf:type schema:ListItem, schema:CreativeWork ;
dc:description "{{index.label}}" ;
schema:item <{{base_uri}}{{crate.url}}{{index.path}}>;
schema:item <{{base_uri}}{{crate.crateurl}}{{index.path}}>;
.
{% endfor -%}
{% else -%}
<{{crate.crate_url}}> rdf:type schema:ListItem, schema:CreativeWork ;
<{{crate.crateurl}}> rdf:type schema:ListItem, schema:CreativeWork ;
dc:title "{{crate.name}}" ;
dc:description "{{crate.text}}" ;
schema:item <{{crate.url}}> ;
Expand Down

0 comments on commit 0715d4a

Please sign in to comment.