File tree 6 files changed +129
-2
lines changed
6 files changed +129
-2
lines changed Original file line number Diff line number Diff line change @@ -28,6 +28,7 @@ plugins:
28
28
# If you want to link only specific pages in your header, use this and add the path to the pages
29
29
# in order as they should show up.
30
30
header_pages :
31
+ - post-list.md
31
32
- douvk.md
32
33
33
34
Original file line number Diff line number Diff line change
1
+ ---
2
+ layout: base
3
+ ---
4
+
5
+ < div class ="home ">
6
+ {%- if page.title -%}
7
+ < h1 class ="page-heading "> {{ page.title }}</ h1 >
8
+ {%- endif -%}
9
+
10
+ {{ content }}
11
+
12
+
13
+ {% if site.paginate %}
14
+ {% assign posts = paginator.posts %}
15
+ {% else %}
16
+ {% assign posts = site.posts %}
17
+ {% endif %}
18
+
19
+
20
+ {%- if posts.size > 0 -%}
21
+ {%- if page.list_title -%}
22
+ < h2 class ="post-list-heading "> {{ page.list_title }}</ h2 >
23
+ {%- endif -%}
24
+ < ul class ="post-list ">
25
+ {%- assign date_format = site.minima.date_format | default: "%b %-d, %Y" -%}
26
+ {%- for post in posts -%}
27
+ < li >
28
+ < span class ="post-meta "> {{ post.date | date: date_format }}</ span >
29
+ < h3 >
30
+ < a class ="post-link " href ="{{ post.url | relative_url }} ">
31
+ {{ post.title | escape }}
32
+ </ a >
33
+ </ h3 >
34
+ {%- if site.show_excerpts -%}
35
+ {{ post.excerpt }}
36
+ {%- endif -%}
37
+ </ li >
38
+ {%- endfor -%}
39
+ </ ul >
40
+
41
+ {% if site.paginate %}
42
+ < div class ="pager ">
43
+ < ul class ="pagination ">
44
+ {%- if paginator.previous_page %}
45
+ < li > < a href ="{{ paginator.previous_page_path | relative_url }} " class ="previous-page "> {{ paginator.previous_page }}</ a > </ li >
46
+ {%- else %}
47
+ < li > < div class ="pager-edge "> •</ div > </ li >
48
+ {%- endif %}
49
+ < li > < div class ="current-page "> {{ paginator.page }}</ div > </ li >
50
+ {%- if paginator.next_page %}
51
+ < li > < a href ="{{ paginator.next_page_path | relative_url }} " class ="next-page "> {{ paginator.next_page }}</ a > </ li >
52
+ {%- else %}
53
+ < li > < div class ="pager-edge "> •</ div > </ li >
54
+ {%- endif %}
55
+ </ ul >
56
+ </ div >
57
+ {%- endif %}
58
+
59
+ {%- endif -%}
60
+
61
+ </ div >
Original file line number Diff line number Diff line change
1
+ ---
2
+ layout: base
3
+ ---
4
+
5
+ < div class ="home ">
6
+ {%- if page.title -%}
7
+ < h1 class ="page-heading "> {{ page.title }}</ h1 >
8
+ {%- endif -%}
9
+
10
+ {{ content }}
11
+
12
+
13
+ <!-- {% if site.paginate %}
14
+ {% assign posts = paginator.posts %}
15
+ {% else %}
16
+ {% assign posts = site.posts %}
17
+ {% endif %}
18
+
19
+
20
+ {%- if posts.size > 0 -%}
21
+ {%- if page.list_title -%}
22
+ <h2 class="post-list-heading">{{ page.list_title }}</h2>
23
+ {%- endif -%}
24
+ <ul class="post-list">
25
+ {%- assign date_format = site.minima.date_format | default: "%b %-d, %Y" -%}
26
+ {%- for post in posts -%}
27
+ <li>
28
+ <span class="post-meta">{{ post.date | date: date_format }}</span>
29
+ <h3>
30
+ <a class="post-link" href="{{ post.url | relative_url }}">
31
+ {{ post.title | escape }}
32
+ </a>
33
+ </h3>
34
+ {%- if site.show_excerpts -%}
35
+ {{ post.excerpt }}
36
+ {%- endif -%}
37
+ </li>
38
+ {%- endfor -%}
39
+ </ul>
40
+
41
+ {% if site.paginate %}
42
+ <div class="pager">
43
+ <ul class="pagination">
44
+ {%- if paginator.previous_page %}
45
+ <li><a href="{{ paginator.previous_page_path | relative_url }}" class="previous-page">{{ paginator.previous_page }}</a></li>
46
+ {%- else %}
47
+ <li><div class="pager-edge">•</div></li>
48
+ {%- endif %}
49
+ <li><div class="current-page">{{ paginator.page }}</div></li>
50
+ {%- if paginator.next_page %}
51
+ <li><a href="{{ paginator.next_page_path | relative_url }}" class="next-page">{{ paginator.next_page }}</a></li>
52
+ {%- else %}
53
+ <li><div class="pager-edge">•</div></li>
54
+ {%- endif %}
55
+ </ul>
56
+ </div>
57
+ {%- endif %}
58
+
59
+ {%- endif -%} -->
60
+
61
+ </ div >
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ categories:
9
9
<!-- > updated 04/Jun/2024 -->
10
10
11
11
### install nvidia driver on self compiled rt ubuntu kernel:
12
- https://gist.github.com/ynrng/cb0de1bd397e8ec90e22ea3e0bbd202e
12
+ [ gist ] ( https://gist.github.com/ynrng/cb0de1bd397e8ec90e22ea3e0bbd202e )
13
13
14
14
15
15
### TAMP w/ mujoco :
Original file line number Diff line number Diff line change @@ -35,7 +35,6 @@ layout: home
35
35
- [ Homebrew] ( envs/homebrew.md )
36
36
- [ ROS 2] ( envs/ros.md )
37
37
38
- -[ test] ( _posts/2024-06-04-memos.md )
39
38
<!-- ```
40
39
.
41
40
├── _config.yml
Original file line number Diff line number Diff line change
1
+ ---
2
+ layout : dict
3
+ title : " All posts"
4
+ # categories: commands
5
+ ---
You can’t perform that action at this time.
0 commit comments