-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathyoutube.html
More file actions
75 lines (65 loc) · 2.91 KB
/
Copy pathyoutube.html
File metadata and controls
75 lines (65 loc) · 2.91 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
---
layout: default
title: 油管/youtube 软件教程
description: 油管安卓最新版本下载,youtube常见各类复杂问题教学,油管优质博主推荐
canonical_url: 'https://tggsearch.github.io/youtube.html'
---
<h2>常用资源</h2>
<div class='icon-block-body-three'>
<div class='icon-block-item'>
<a href="/docs/302.html?target=https://youtube.en.uptodown.com/android" target="_blank">
<img src="https://cdn.jsdelivr.net/gh/tggsearch/tggsearch.github.io/assets/img/youtube.webp" alt="Twitter安卓版本" height=50px onerror="this.onerror=null;this.src='/assets/img/youtube.webp'">
<p>安卓下载</p>
</a>
</div>
<div class='icon-block-item'>
<a href="/docs/302.html?target=https://youtube.com" target="_blank">
<img src="https://cdn.jsdelivr.net/gh/tggsearch/tggsearch.github.io/assets/img/youtube.webp" alt="Twitter官网" height=50px onerror="this.onerror=null;this.src='/assets/img/youtube.webp'">
<p>官网</p>
</a>
</div>
<div class='icon-block-item'>
<a href="/docs/302.html?target=https://www.youtube.com/@aiDigitalMan" target="_blank">
<img src="https://cdn.jsdelivr.net/gh/tggsearch/tggsearch.github.io/assets/img/youtube.webp" alt="电报网页版" height=50px onerror="this.onerror=null;this.src='/assets/img/youtube.webp'">
<p>关注我们</p>
</a>
</div>
</div>
<div>
<h2>油管最新文章</h2>
<div> </div>
<ul class="post-list">
{% assign pin_posts = '' | split: ',' %}
{% assign regular_posts = '' | split: ',' %}
{% for category in site.categories %}
{% if 'youtube' == category[0] %}
{% assign pages_list = category[1] %}
{% for tmp_post in pages_list %}
{% if tmp_post.pin == true %}
{% assign pin_posts = pin_posts | push: tmp_post %}
{% else %}
{% assign regular_posts = regular_posts | push: tmp_post %}
{% endif %}
{% endfor %}
{% endif %}
{% endfor %}
{% assign combined_posts = pin_posts | concat: regular_posts %}
{% assign count = 0 %}
{% for post in combined_posts %}
{% if post.title != null and count < 30 %}
{% assign count = count | plus: 1 %}
<li>
{% assign date_format = site.cayman-blog.date_format | default: "%b %-d, %Y" %}
{% assign url_link = post.url %}
<h2>
<a class="post-link" href="{{ url_link }}" title="{{ post.title }}">{{ post.title | escape }}</a>
</h2>
{{ post.excerpt | replace: '<script.*?</script>', '' | strip_html | markdownify | truncate: 60 }}
<p>
<span class="post-meta">{{ post.date | date: date_format }}</span>
</p>
</li>
{% endif %}
{% endfor %}
</ul>
</div>