-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #24 from dasc-lab/feat/code
created code tab
- Loading branch information
Showing
21 changed files
with
131 additions
and
21 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,6 @@ | ||
--- | ||
layout: code | ||
title: "Online Adaptive CBFs" | ||
date: 2024-10-22 | ||
code: https://github.com/tkkim-robot/online_adaptive_cbf | ||
--- |
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,6 @@ | ||
--- | ||
layout: code | ||
title: "Online Adaptive CBFs" | ||
date: 2024-10-22 | ||
code: https://github.com/tkkim-robot/online_adaptive_cbf | ||
--- |
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,6 @@ | ||
--- | ||
layout: code | ||
title: "Online Adaptive CBFs" | ||
date: 2024-10-22 | ||
code: https://github.com/tkkim-robot/online_adaptive_cbf | ||
--- |
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,6 @@ | ||
--- | ||
layout: code | ||
title: "Online Adaptive CBFs" | ||
date: 2024-10-22 | ||
code: https://github.com/tkkim-robot/online_adaptive_cbf | ||
--- |
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,6 @@ | ||
--- | ||
layout: code | ||
title: "Safety-Critical Controllers for Robotic Navigation" | ||
date: 2024-07-10 | ||
code: https://github.com/tkkim-robot/safe_control | ||
--- |
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,5 @@ | ||
--- | ||
title: Code # force it to not be plural | ||
--- | ||
|
||
Here is some content |
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
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
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
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
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
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
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
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
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
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
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,20 @@ | ||
{{ define "main" }} | ||
|
||
<h1>{{ .Title }}</h1> | ||
|
||
<p class="d-none"> Rendered from layouts/code/list </p> | ||
|
||
<div class="row row-cols-auto"> | ||
{{ range .Pages }} | ||
|
||
<div class="col py-3"> | ||
<a href={{ .RelPermalink }}> | ||
{{ partial "github-repo-card" . }} | ||
</a> | ||
</div> | ||
|
||
|
||
{{ end }} | ||
</div> | ||
|
||
{{ end }} |
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,27 @@ | ||
{{ define "main" }} | ||
|
||
<p class="d-none"> Rendered from /layouts/code/single.html </p> | ||
|
||
<div class="my-3"> | ||
<h2>{{ .Title }}</h2> | ||
</div> | ||
|
||
{{ partial "github-repo-card" . }} | ||
|
||
{{ .Content }} | ||
|
||
{{ if .Params.bib }} | ||
<div class="my-3"> | ||
<h3>Citation</h3> | ||
<div class="card"> | ||
<div class="card-body"> | ||
<pre> | ||
{{ .Params.bib }} | ||
</pre> | ||
</div> | ||
</div> | ||
</div> | ||
{{ end }} | ||
|
||
|
||
{{ end }} |
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
Binary file not shown.
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,19 @@ | ||
<div> | ||
|
||
{{/* Expects ".Params.code" to be of the format "https://github.com/username/repo" */}} | ||
{{/* Uses https://github.com/anuraghazra/github-readme-stats to render the card */}} | ||
|
||
{{/* split the string to get the username and repo string */}} | ||
{{ $github_split := split .Params.code "/" }} | ||
{{ $username := index $github_split 3 }} | ||
{{ $repo := index $github_split 4 }} | ||
|
||
<div class="repo"> | ||
<a href={{ .Params.code }} target="_blank"> | ||
<img | ||
src="https://github-readme-stats.vercel.app/api/pin/?username={{ $username }}&repo={{ $repo }}&show_owner=true&description_lines_count=3" | ||
> | ||
</a> | ||
</div> | ||
|
||
</div> |