mirror of
https://github.com/rvtr/rmc_website.git
synced 2025-10-31 13:31:21 -04:00
This is terrible but maybe it'll work
This commit is contained in:
parent
89e399d58a
commit
768c6ca75e
@ -4,8 +4,9 @@ function warnFaketad() {
|
|||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
<!-- Get first entry in CSV for the desired program. The credit/banner/name/origin should be the same across all files, listing multiple items in each line if there are differences. -->
|
<!-- Get first entry in CSV for the desired program. The credit/banner/name/origin should be the same across all files, listing multiple items in each line if there are differences. -->
|
||||||
{% assign ENTRY = site.data.dsinfo | find:"PROGRAM",page.app %}
|
{% for ENTRY in site.data.dsinfo %}
|
||||||
|
{% if ENTRY.PROGRAM == page.app %}
|
||||||
|
{% if ENTRY.PUBLISHED == "TRUE" %}
|
||||||
<!--
|
<!--
|
||||||
<div class="imageTwo" style="position:relative;width:100%;height:14vw;">
|
<div class="imageTwo" style="position:relative;width:100%;height:14vw;">
|
||||||
<div class="homeimg">
|
<div class="homeimg">
|
||||||
@ -97,3 +98,6 @@ function warnFaketad() {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
{% endif %}
|
||||||
|
{% endif %}
|
||||||
|
{% endfor %}
|
||||||
@ -11,7 +11,9 @@
|
|||||||
<meta property="og:description" content="DS(i) development software documentation and preservation.">
|
<meta property="og:description" content="DS(i) development software documentation and preservation.">
|
||||||
<meta name="keywords" content="dsi, ds, nintendo, dev" />
|
<meta name="keywords" content="dsi, ds, nintendo, dev" />
|
||||||
{% else %}
|
{% else %}
|
||||||
{% assign ENTRY = site.data.dsinfo | find:"PROGRAM",page.app %}
|
{% for ENTRY in site.data.dsinfo %}
|
||||||
|
{% if ENTRY.PROGRAM == page.app %}
|
||||||
|
{% if ENTRY.PUBLISHED == "TRUE" %}
|
||||||
<title>{{ page.app }} | {{ site.title }}</title>
|
<title>{{ page.app }} | {{ site.title }}</title>
|
||||||
<meta property="og:title" content="{{ page.app }}">
|
<meta property="og:title" content="{{ page.app }}">
|
||||||
<meta property="og:image" content="{{ site.imgurl }}{{ ENTRY.PROGRAM }}/{{ ENTRY.PROGRAM }}.gif">
|
<meta property="og:image" content="{{ site.imgurl }}{{ ENTRY.PROGRAM }}/{{ ENTRY.PROGRAM }}.gif">
|
||||||
@ -19,6 +21,9 @@
|
|||||||
<meta property="og:description" content="{{ ENTRY.DESC }} for {{ ENTRY.SYSTEM }}">
|
<meta property="og:description" content="{{ ENTRY.DESC }} for {{ ENTRY.SYSTEM }}">
|
||||||
<meta name="keywords" content="dsi, ds, nintendo, dev, {{ page.app }}" />
|
<meta name="keywords" content="dsi, ds, nintendo, dev, {{ page.app }}" />
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
{% endif %}
|
||||||
|
{% endfor %}
|
||||||
|
{% endif %}
|
||||||
<link rel="icon" type="image/png" href="/icon.png"/>
|
<link rel="icon" type="image/png" href="/icon.png"/>
|
||||||
<link rel="stylesheet" type="text/css" href="/assets/css/styledsi.css">
|
<link rel="stylesheet" type="text/css" href="/assets/css/styledsi.css">
|
||||||
<link id="pagestyle" rel="stylesheet" type="text/css" href="">
|
<link id="pagestyle" rel="stylesheet" type="text/css" href="">
|
||||||
|
|||||||
@ -3,7 +3,6 @@ Title: Stuff
|
|||||||
Layout: dsiware
|
Layout: dsiware
|
||||||
app: TwlNmenu
|
app: TwlNmenu
|
||||||
---
|
---
|
||||||
{% comment %}
|
|
||||||
<!--
|
<!--
|
||||||
Notes on the CSV values:
|
Notes on the CSV values:
|
||||||
PROGRAM: Name as seen in rmc-dsi directory
|
PROGRAM: Name as seen in rmc-dsi directory
|
||||||
@ -25,24 +24,19 @@ app: TwlNmenu
|
|||||||
TITLE: Program title
|
TITLE: Program title
|
||||||
DESC: Program description as seen on index.html
|
DESC: Program description as seen on index.html
|
||||||
-->
|
-->
|
||||||
{% endcomment %}
|
|
||||||
|
|
||||||
{% assign ENTRY = site.data.dsinfo | find:"PROGRAM",page.app %}
|
{% for ENTRY in site.data.dsinfo %}
|
||||||
|
{% if ENTRY.PROGRAM == page.app %}
|
||||||
|
{% if ENTRY.PUBLISHED == "TRUE" %}
|
||||||
<p>{{ page.app }} | {{ site.title }}<br>
|
<p>{{ page.app }} | {{ site.title }}<br>
|
||||||
{{ page.app }}<br>
|
{{ page.app }}<br>
|
||||||
{{ site.imgurl }}{{ ENTRY.PROGRAM }}/{{ ENTRY.PROGRAM }}.gif<br>
|
{{ site.imgurl }}{{ ENTRY.PROGRAM }}/{{ ENTRY.PROGRAM }}.gif<br>
|
||||||
{{ ENTRY.DESC }} for {{ ENTRY.SYSTEM }}<br>
|
{{ ENTRY.DESC }} for {{ ENTRY.SYSTEM }}<br>
|
||||||
{{ ENTRY.DESC }} for {{ ENTRY.SYSTEM }}<br>
|
{{ ENTRY.DESC }} for {{ ENTRY.SYSTEM }}<br>
|
||||||
dsi, ds, nintendo, dev, {{ page.app }}</p>
|
dsi, ds, nintendo, dev, {{ page.app }}</p>
|
||||||
<hr>
|
{% endif %}
|
||||||
{% assign ENTRY = site.data.dsinfo | find:"PROGRAM","TwlNmenu" %}
|
{% endif %}
|
||||||
<p>{{ page.app }} | {{ site.title }}<br>
|
{% endfor %}
|
||||||
{{ page.app }}<br>
|
|
||||||
{{ site.imgurl }}{{ ENTRY.PROGRAM }}/{{ ENTRY.PROGRAM }}.gif<br>
|
|
||||||
{{ ENTRY.DESC }} for {{ ENTRY.SYSTEM }}<br>
|
|
||||||
{{ ENTRY.DESC }} for {{ ENTRY.SYSTEM }}<br>
|
|
||||||
dsi, ds, nintendo, dev, {{ page.app }}</p>
|
|
||||||
<h1>^ Attempt to figure out why things are broken ^</h1>
|
|
||||||
|
|
||||||
<!-- Check all DS program info -->
|
<!-- Check all DS program info -->
|
||||||
<style>
|
<style>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user