diff --git a/src/MyWebLog.Data/MyWebLog.Data.fsproj b/src/MyWebLog.Data/MyWebLog.Data.fsproj index 588f479..5a868b4 100644 --- a/src/MyWebLog.Data/MyWebLog.Data.fsproj +++ b/src/MyWebLog.Data/MyWebLog.Data.fsproj @@ -14,7 +14,7 @@ - + diff --git a/src/MyWebLog/MyWebLog.fsproj b/src/MyWebLog/MyWebLog.fsproj index 0fa4905..5ad84b1 100644 --- a/src/MyWebLog/MyWebLog.fsproj +++ b/src/MyWebLog/MyWebLog.fsproj @@ -22,7 +22,7 @@ - + diff --git a/src/MyWebLog/appsettings.json b/src/MyWebLog/appsettings.json index 09c4c5b..491cff4 100644 --- a/src/MyWebLog/appsettings.json +++ b/src/MyWebLog/appsettings.json @@ -3,7 +3,7 @@ "hostname": "data02.bitbadger.solutions", "database": "myWebLog_dev" }, - "Generator": "myWebLog 2.0-alpha12", + "Generator": "myWebLog 2.0-alpha13", "Logging": { "LogLevel": { "MyWebLog.Handlers": "Debug" diff --git a/src/MyWebLog/themes/tech-blog/index.liquid b/src/MyWebLog/themes/tech-blog/index.liquid index ebbde67..6f8ceb4 100644 --- a/src/MyWebLog/themes/tech-blog/index.liquid +++ b/src/MyWebLog/themes/tech-blog/index.liquid @@ -19,24 +19,22 @@
{{ post.text }}
{%- assign cat_count = post.category_ids | size -%} {%- if cat_count > 0 %} - + Categorized under - {%- for cat_id in post.category_ids %} + {% for cat_id in post.category_ids -%} {%- assign cat = categories | where: "id", cat_id | first -%} - - + {% unless forloop.last %}, {% endunless %} {%- endfor %}
{%- endif %} {%- assign tag_count = post.tags | size -%} {%- if tag_count > 0 %} - + Tagged - {%- for tag in post.tags %} - - - + {% for tag in post.tags -%} + {% unless forloop.last %}, {% endunless %} {%- endfor %}
{%- endif %} diff --git a/src/MyWebLog/themes/tech-blog/layout.liquid b/src/MyWebLog/themes/tech-blog/layout.liquid index c5a3669..db76556 100644 --- a/src/MyWebLog/themes/tech-blog/layout.liquid +++ b/src/MyWebLog/themes/tech-blog/layout.liquid @@ -18,6 +18,7 @@ href="{{ "feed.xml" | absolute_link }}"> {%- endif %} +