Update Git URLs
- Remove quotes where not required
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
{% assign tech_with_links = "ASP.NET MVC|Azure|BlogEngine.NET|Database Abstraction|Digital Ocean|Giraffe|GitHub|GitHub Pages|Hexo|Hugo|htmx|Jekyll|LiteDB|MongoDB|MySQL|myWebLog|nginx|Orchard|PHP|PostgreSQL|Rackspace Cloud|RavenDB|RethinkDB|SQL Server|Vue.js|WordPress" | split: "|" %}
|
||||
{% assign tech_links = "https://dotnet.microsoft.com/apps/aspnet/mvc|https://azure.microsoft.com/|http://www.dotnetblogengine.net/|https://github.com/danieljsummers/DatabaseAbstraction|https://www.digitalocean.com/|https://giraffe.wiki|https://github.com/|https://pages.github.com/|https://hexo.io/|https://gohugo.io/|https://htmx.org/|https://jekyllrb.com/|https://www.litedb.org/|https://www.mongodb.com/|https://www.mysql.com/|https://bitbadger.solutions/open-source/myweblog/|http://nginx.org/|https://orchardproject.net/|https://www.php.net/|https://www.postgresql.org/|https://www.rackspace.com/cloud|https://ravendb.net/|https://rethinkdb.com/|https://www.microsoft.com/en-us/sql-server/|https://vuejs.org/|https://wordpress.org" | split: "|" %}
|
||||
<h1 class="solution-header">
|
||||
<h1 class=solution-header>
|
||||
{{ page.title }}<br>
|
||||
<small><small>
|
||||
{%- assign url = page.metadata | value: "url" -%}
|
||||
@@ -9,16 +9,16 @@
|
||||
{% if no_link == "true" -%}
|
||||
{{ url }}
|
||||
{%- else -%}
|
||||
<a href="{{ url }}" target="_blank" rel="noopener">{{ url }}</a>
|
||||
<a href="{{ url }}" target=_blank rel=noopener>{{ url }}</a>
|
||||
{%- endif %}
|
||||
{% if archive > 0 -%}
|
||||
|
||||
<a href="{{ page.metadata | value: "archive_url" }}" target="_blank" rel="noopener"><small>(Archive)</small></a>
|
||||
<a href="{{ page.metadata | value: "archive_url" }}" target=_blank rel=noopener><small>(Archive)</small></a>
|
||||
{%- endif %}
|
||||
</small></small>
|
||||
</h1>
|
||||
<div class="app-info">
|
||||
<article class="content">
|
||||
<div class=app-info>
|
||||
<article class=content>
|
||||
<aside>
|
||||
{%- capture screen_url %}screenshots/{{ page.permalink | split: "/" | last }}.png{% endcapture -%}
|
||||
<img src="{{ screen_url | theme_asset }}" alt="Screen shot of {{ page.title | escape }}">
|
||||
@@ -31,57 +31,55 @@
|
||||
{% if curr_count > 0 or past_count > 0 -%}
|
||||
<section aria-label="The Technology Stack">
|
||||
<h3 onclick="toggle('techStack')">
|
||||
The Technology Stack<span id="techStackArrow" class="arrow">▼</span>
|
||||
The Technology Stack<span id=techStackArrow class=arrow>▼</span>
|
||||
</h3>
|
||||
<div id="techStack" class="collapse-panel hidden">
|
||||
<div id=techStack class="collapse-panel hidden">
|
||||
{% if curr_count > 0 -%}
|
||||
{% if past_count > 0 -%}
|
||||
<p><small><strong>Current:</strong></small></p>
|
||||
{%- endif %}
|
||||
<ul>
|
||||
{% for curr in curr_tech -%}
|
||||
{%- assign tech = curr.value | split: "|" -%}
|
||||
{%- assign link_idx = -1 -%}
|
||||
{%- for tech_name in tech_with_links -%}
|
||||
{%- if tech_name == tech[0] %}{% assign link_idx = forloop.index0 %}{% endif -%}
|
||||
{%- endfor -%}
|
||||
<li>
|
||||
{% if link_idx >= 0 -%}
|
||||
<a href="{{ tech_links[link_idx] }}" target="_blank" rel="noopener">{{ tech[0] }}</a>
|
||||
{% else %}
|
||||
{{ tech[0] }}
|
||||
{%- endif %} for {{ tech[1] }}
|
||||
</li>
|
||||
{%- endfor %}
|
||||
{% for curr in curr_tech -%}
|
||||
{%- assign tech = curr.value | split: "|" -%}
|
||||
{%- assign link_idx = -1 -%}
|
||||
{%- for tech_name in tech_with_links -%}
|
||||
{%- if tech_name == tech[0] %}{% assign link_idx = forloop.index0 %}{% endif -%}
|
||||
{%- endfor -%}
|
||||
<li>
|
||||
{% if link_idx >= 0 -%}
|
||||
<a href="{{ tech_links[link_idx] }}" target=_blank rel=noopener>{{ tech[0] }}</a>
|
||||
{% else %}
|
||||
{{ tech[0] }}
|
||||
{%- endif %} for {{ tech[1] }}
|
||||
{%- endfor %}
|
||||
</ul>
|
||||
{%- endif %}
|
||||
{% if past_count > 0 -%}
|
||||
{% if curr_count > 0 %}
|
||||
<p><small><strong>Previously:</strong></small></p>
|
||||
<p><small><strong>Previously:</strong></small>
|
||||
{% endif %}
|
||||
<ul>
|
||||
{% for past in past_tech -%}
|
||||
{%- assign tech = past.value | split: "|" -%}
|
||||
{%- assign link_idx = -1 -%}
|
||||
{%- for tech_name in tech_with_links -%}
|
||||
{%- if tech_name == tech[0] %}{% assign link_idx = forloop.index0 %}{% endif -%}
|
||||
{%- endfor -%}
|
||||
<li>
|
||||
{% if link_idx >= 0 %}
|
||||
<a href="{{ tech_links[link_idx] }}" target="_blank" rel="noopener">{{ tech[0] }}</a>
|
||||
{% else %}
|
||||
{{ tech[0] }}
|
||||
{%- endif %} for {{ tech[1] }}
|
||||
</li>
|
||||
{%- endfor %}
|
||||
{% for past in past_tech -%}
|
||||
{%- assign tech = past.value | split: "|" -%}
|
||||
{%- assign link_idx = -1 -%}
|
||||
{%- for tech_name in tech_with_links -%}
|
||||
{%- if tech_name == tech[0] %}{% assign link_idx = forloop.index0 %}{% endif -%}
|
||||
{%- endfor -%}
|
||||
<li>
|
||||
{% if link_idx >= 0 %}
|
||||
<a href="{{ tech_links[link_idx] }}" target=_blank rel=noopener>{{ tech[0] }}</a>
|
||||
{% else %}
|
||||
{{ tech[0] }}
|
||||
{%- endif %} for {{ tech[1] }}
|
||||
{%- endfor %}
|
||||
</ul>
|
||||
{% endif %}
|
||||
</div>
|
||||
</section>
|
||||
{%- endif %}
|
||||
<p><br><a href="{{ "solutions" | relative_link }}">« Back to All Solutions</a></p>
|
||||
<p><br><a href="{{ "solutions" | relative_link }}">« Back to All Solutions</a>
|
||||
{% if is_logged_on -%}
|
||||
<p><small><a hx-boost="false" href="{{ page | edit_page_link }}">Edit This Page</a></small></p>
|
||||
<p><small><a hx-boost="false" href="{{ page | edit_page_link }}">Edit This Page</a></small>
|
||||
{% endif %}
|
||||
</article>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user