forked from hydecorp/hydejack-starter-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8058ccb
commit 6573d72
Showing
4 changed files
with
67 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
git: | ||
name: Git | ||
|
||
project-management: | ||
name: Project Management | ||
|
||
intellij: | ||
name: Intellij | ||
|
||
debugging: | ||
name: Debugging | ||
|
||
mysql: | ||
name: MySql | ||
|
||
docker: | ||
name: Docker | ||
|
||
localization: | ||
name: Localization | ||
|
||
internationalization: | ||
name: Internationalization | ||
|
||
spring: | ||
name: Spring | ||
|
||
poc: | ||
name: POC | ||
|
||
productivity: | ||
name: Productivity | ||
|
||
thymeleaf: | ||
name: Thymeleaf | ||
|
||
H2: | ||
name: H2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{% if posts %} | ||
<ul> | ||
{% for post in posts %} | ||
<li><a href="{{ post.url }}">{{ post.title }}</a></li> | ||
{% endfor %} | ||
</ul> | ||
{% else %} | ||
<p>No posts found with this tag.</p> | ||
{% endif %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
--- | ||
layout: page | ||
tag: debugging | ||
title: "Posts tagged with Debugging" | ||
permalink: /tag/debugging/ | ||
--- | ||
|
||
{% assign posts = site.tags['Debugging'] %} | ||
{% include posts_by_tag.html %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
--- | ||
layout: page | ||
title: Tags | ||
--- | ||
<ul> | ||
{% for tag in site.tags %} | ||
<li> | ||
<a href="{{ site.baseurl }}/tag/{{ tag[0] | slugify }}">{{ tag[0] }}</a> ({{ tag[1].size }}) | ||
</li> | ||
{% endfor %} | ||
</ul> |