-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemplate.qmd
65 lines (49 loc) · 1.57 KB
/
template.qmd
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
---
title: "Template"
subtitle: Template
description: |
template
categories:
- Mathematics
author: Kwangmin Kim
date: 03/31/2023
format:
html:
page-layout: full
code-fold: true
toc: true
number-sections: true
comments:
utterances:
repo: ./docs/comments
draft: False
---
<ul class="nav nav-pills" id="language-tab" role="tablist">
<li class="nav-item" role="presentation">
<button class="nav-link active" id="Korean-tab" data-bs-toggle="tab" data-bs-target="#Korean" type="button" role="tab" aria-controls="Korean" aria-selected="true">Korean</button>
</li>
<li class="nav-item" role="presentation">
<button class="nav-link" id="English-tab" data-bs-toggle="tab" data-bs-target="#English" type="button" role="tab" aria-controls="knitr" aria-selected="false">English</button>
</li>
<div class="tab-content" id="language-tabcontent">
<div class="tab-pane fade show active" id="Korean" role="tabpanel" aria-labelledby="Korean-tab">
::: {#Korean .tab-pane .fade .show .active role="tabpanel" aria-labelledby="Korean-tab"}
:::
</div>
<div class="tab-pane fade" id="English" role="tabpanel" aria-labelledby="English-tab">
::: {#English .tab-pane .fade role="tabpanel" aria-labelledby="English-tab"}
:::
</div>
```{python}
#| echo: false
#| eval: true
radius = 10
from IPython.display import display, Markdown
display(Markdown("""
The radius of the circle is {radius}.
""".format(radius = radius)))
```
# Go to Project Content List
[Project Content List](./docs/projects/index.qmd)
# Go to Blog Content List
[Blog Content List](../../content_list.qmd)