FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
tmallfe.github.io/tags.html at master · tmallfe/tmallfe.github.io · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
tmallfe
/
tmallfe.github.io
Public
Notifications
You must be signed in to change notification settings
Fork
494
Star
3.9k
Code
Issues
38
Pull requests
2
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
tmallfe.github.io
/
tags.html
Copy path
More file actions
More file actions
Latest commit
History
History
History
39 lines (35 loc) · 1.47 KB
Breadcrumbs
tmallfe.github.io
/
tags.html
Copy path
File metadata and controls
39 lines (35 loc) · 1.47 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
---
layout: page
title: Tags
header: Posts By Tag
group: navigation
---
{% capture site_tags %}{% for tag in site.tags %}{{ tag | first }}{% unless forloop.last %},{% endunless %}{% endfor %}{% endcapture %}
{% assign tag_words = site_tags | split:',' | sort %}
<
div
class
="
col-sm-3 col-xs-6
"
>
<
ul
class
="
nav nav-tabs-vertical cat-tag-menu
"
>
{% for item in (0..site.tags.size) %}{% unless forloop.last %}
{% capture this_word %}{{ tag_words[item] | strip_newlines }}{% endcapture %}
<
li
>
<
a
href
="
#{{ this_word | replace:' ','-' }}-ref
"
>
{{ this_word }}
<
span
class
="
badge pull-right
"
>
{{ site.tags[this_word].size }}
</
span
>
</
a
>
</
li
>
{% endunless %}{% endfor %}
</
ul
>
</
div
>
<!-- Tab panes -->
<
div
class
="
tab-content col-sm-9 col-xs-6
"
>
{% for item in (0..site.tags.size) %}{% unless forloop.last %}
{% capture this_word %}{{ tag_words[item] | strip_newlines }}{% endcapture %}
<
div
class
="
tab-pane
"
id
="
{{ this_word | replace:' ','-' }}-ref
"
>
<
h2
style
="
margin-top: 0px
"
>
Posts tagged with {{ this_word }}
</
h2
>
<
ul
class
="
list-unstyled
"
>
{% for post in site.tags[this_word] %}{% if post.title != null %}
<
li
style
="
line-height: 35px;
"
>
<
a
href
="
{{ site.BASE_PATH }}{{post.url}}
"
>
{{post.title}}
</
a
>
<
span
class
="
text-muted
"
>
- {{ post.date | date: "%B %d, %Y" }}
</
span
>
</
li
>
{% endif %}{% endfor %}
</
ul
>
</
div
>
{% endunless %}{% endfor %}
</
div
>
<
div
class
="
clearfix
"
>
</
div
>
Back
|
FazBrowse Home
|
New Git URL