Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/App/templates/layout/blog-post.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@

{% block title %}{{ article.title }}{% endblock %}

{% block head_links %}
<link rel="alternate" type="text/markdown" href="{{ url('app::markdown-article', {categorySlug: article.category.slug, slug: article.slug}) }}">
{% endblock %}

{% block page_title %}
{{ include('@partial/title-section.html.twig', {
back_href: url('page::blog'),
Expand Down
1 change: 1 addition & 0 deletions src/App/templates/layout/default.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
<link rel="icon" type="image/png" sizes="32x32" href="{{ asset('images/app/favicon/favicon-32x32.png') }}">
<link rel="icon" type="image/png" sizes="16x16" href="{{ asset('images/app/favicon/favicon-16x16.png') }}">
<link rel="alternate" type="application/rss+xml" title="RSS Feed" href="{{ url('app::feed') }}" />
{% block head_links %}{% endblock %}
<link href="https://use.fontawesome.com/releases/v5.0.6/css/all.css" rel="stylesheet" />
<link href="https://fonts.googleapis.com/css?family=Montserrat:300,400,500,600" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,600" rel="stylesheet">
Expand Down
2 changes: 2 additions & 0 deletions src/Page/templates/page/about.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@

{% block title %}About Us{% endblock %}

{% block head_links %}<link rel="alternate" type="text/markdown" href="/md-pages/about.md">{% endblock %}

{% block stylesheets %}
<style>
/* Pyramid layout in the hero - scoped to this page. */
Expand Down
2 changes: 2 additions & 0 deletions src/Page/templates/page/admin.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@

{% block title %}Dotkernel Admin{% endblock %}

{% block head_links %}<link rel="alternate" type="text/markdown" href="/md-pages/admin.md">{% endblock %}

{% block stylesheets %}
<style>
/* Requirements table - scoped to this page, uses the shared theme tokens. */
Expand Down
2 changes: 2 additions & 0 deletions src/Page/templates/page/api.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@

{% block title %}Dotkernel API{% endblock %}

{% block head_links %}<link rel="alternate" type="text/markdown" href="/md-pages/api.md">{% endblock %}

{% block stylesheets %}
<style>
/* Comparison table - scoped to this page, uses the shared theme tokens. */
Expand Down
2 changes: 2 additions & 0 deletions src/Page/templates/page/architecture.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@

{% block title %}Architecture{% endblock %}

{% block head_links %}<link rel="alternate" type="text/markdown" href="/md-pages/architecture.md">{% endblock %}

{% block stylesheets %}
<style>
/* Middleware and library flow diagrams - scoped to this page, uses the shared theme tokens. */
Expand Down
2 changes: 2 additions & 0 deletions src/Page/templates/page/dotboost.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@

{% block title %}dotboost{% endblock %}

{% block head_links %}<link rel="alternate" type="text/markdown" href="/md-pages/dotboost.md">{% endblock %}

{% block stylesheets %}
<style>
/* Command, skill and guardrail tables - scoped to this page, uses the shared theme tokens. */
Expand Down
2 changes: 2 additions & 0 deletions src/Page/templates/page/frontend.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@

{% block title %}Dotkernel Frontend{% endblock %}

{% block head_links %}<link rel="alternate" type="text/markdown" href="/md-pages/frontend.md">{% endblock %}

{% block stylesheets %}
<style>
/* Requirement and reference tables - scoped to this page, uses the shared theme tokens. */
Expand Down
2 changes: 2 additions & 0 deletions src/Page/templates/page/light.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@

{% block title %}Dotkernel Light{% endblock %}

{% block head_links %}<link rel="alternate" type="text/markdown" href="/md-pages/light.md">{% endblock %}

{% block stylesheets %}
<style>
/* Lifecycle and requirement tables - scoped to this page, uses the shared theme tokens. */
Expand Down
2 changes: 2 additions & 0 deletions src/Page/templates/page/queue.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@

{% block title %}Dotkernel Queue{% endblock %}

{% block head_links %}<link rel="alternate" type="text/markdown" href="/md-pages/queue.md">{% endblock %}

{% block stylesheets %}
<style>
/* Config and command tables - scoped to this page, uses the shared theme tokens. */
Expand Down
2 changes: 2 additions & 0 deletions src/Page/templates/page/wsl2.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@

{% block title %}Development Environment{% endblock %}

{% block head_links %}<link rel="alternate" type="text/markdown" href="/md-pages/wsl2.md">{% endblock %}

{% block stylesheets %}
<style>
/* Requirement and provisioning tables - scoped to this page, uses the shared theme tokens. */
Expand Down