mirror of
https://github.com/MeiK2333/github-style.git
synced 2025-10-07 01:54:06 +00:00
Merge branch 'master' into patch-3
This commit is contained in:
@@ -7,7 +7,7 @@
|
||||
<div class="user-repo-search-results-summary TableObject-item TableObject-item--primary v-align-top">
|
||||
<strong>{{ len .Pages }}</strong>
|
||||
results
|
||||
for <strong>{{ .Params.title }}</strong>
|
||||
for <strong>{{ .Title }}</strong>
|
||||
</div>
|
||||
<div class="TableObject-item text-right v-align-top">
|
||||
<a class="issues-reset-query text-normal d-inline-block ml-3" href="{{ .Site.BaseURL }}/post/">
|
||||
|
@@ -1,5 +1,5 @@
|
||||
<style>
|
||||
.tags{ padding: 15px 0; }
|
||||
.tags { padding: 15px 0; }
|
||||
</style>
|
||||
<div class="f6 text-gray mt-2 tags border-bottom">
|
||||
{{ range $taxonomy, $terms := site.Taxonomies }}
|
||||
@@ -22,4 +22,4 @@
|
||||
</a>
|
||||
{{ end }}
|
||||
{{ end }}
|
||||
</div>
|
||||
</div>
|
@@ -150,7 +150,7 @@ function yearList() {
|
||||
for (let i = 0; i < years.length; i++) {
|
||||
const year = years[i];
|
||||
const node = document.createElement('li');
|
||||
node.innerHTML = `<li><a class="js-year-link filter-item px-3 mb-2 py-2" onclick="switchYear('${year}')">${year}</a></li>`;
|
||||
node.innerHTML = `<a class="js-year-link filter-item px-3 mb-2 py-2" onclick="switchYear('${year}')">${year}</a>`;
|
||||
document.querySelector('#year-list').appendChild(node);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user