Skip to content

Commit

Permalink
hopefully finish website source reorganization
Browse files Browse the repository at this point in the history
  • Loading branch information
samtupy committed May 11, 2024
1 parent 7994d39 commit d5cf5e2
Show file tree
Hide file tree
Showing 23 changed files with 7 additions and 4,749 deletions.
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,5 @@ macosdev
windev

# website builds
web/_site
web/docs
web/public_html
web/src/docs
10 changes: 5 additions & 5 deletions web/src/_layouts/default.liquid
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<meta charset="utf-8">
{% if page.published_date -%}
<title>{{ page.title }} &ndash; {{ collections.posts.title }}</title>
{% else %}
{%- else -%}
<title>{{ page.title }} &ndash; {{ site.title }}</title>
{%- endif %}
<style>
Expand All @@ -24,11 +24,11 @@ display: inline;
{%- assign permalink = "/" | append: page.permalink -%}
<ul class="links" style="list-style-type:none;">
{% for item in site.data.nav -%}
{%- assign item_with_index = item[0] | append: "/index.html" %}
{%- if permalink == item[0] or permalink == item_with_index -%}
<li><a href="{{ item[0] }}" aria-current="page">{{ item[1] }}</a></li>
{%- assign item_with_index = item[1] | append: "/index.html" %}
{%- if permalink == item[1] or permalink == item_with_index -%}
<li><a href="{{ item[1] }}" aria-current="page">{{ item[0] }}</a></li>
{% else -%}
<li><a href="{{ item[0] }}">{{ item[1] }}</a></li>
<li><a href="{{ item[1] }}">{{ item[0] }}</a></li>
{% endif %}
{%- endfor -%}
</ul>
Expand Down
888 changes: 0 additions & 888 deletions web/src/docs/appendix_third_party_code_attributions.liquid

This file was deleted.

390 changes: 0 additions & 390 deletions web/src/docs/index.liquid

This file was deleted.

Loading

0 comments on commit d5cf5e2

Please sign in to comment.