Skip to content

Commit 913badc

Browse files
committed
add listing feature for blogs
1 parent a6d7592 commit 913badc

19 files changed

Lines changed: 70 additions & 664 deletions

blogs/blogs.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
- title: Blog 1 Title
2+
path:
3+
image: images/ilija-boshkov-0nI1DczRQAM-unsplash.jpg
4+
description: >
5+
This is description for Blog 1.
6+
Photo by <a href="https://unsplash.com/@boshkov?utm_content=creditCopyText&utm_medium=referral&utm_source=unsplash">Ilija Boshkov</a> on
7+
<a href="https://unsplash.com/photos/a-computer-screen-with-a-program-running-on-it-0nI1DczRQAM?utm_content=creditCopyText&utm_medium=referral&utm_source=unsplash">Unsplash</a>
8+
9+
categories: [shiny, Beginner]
10+
date: 2025-04-01
1.1 MB
Loading
2.43 MB
Loading

blogs/index.qmd

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
---
2-
title: "Blogs"
2+
title: Blogs
33
listing:
4-
contents: posts/*.qmd
5-
sort: "date desc"
6-
type: default
7-
categories: true
4+
contents: blogs.yml
5+
type: grid
86
---

blogs/posts/intro-to-shiny.qmd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ With just a few lines of R code, you can create dashboards, visualize live data,
1515
## **Why Use Shiny?**
1616

1717
Here’s why Shiny is a game-changer for R programmers:\
18-
**Easy to Get Started** – No need for web development skills, if you know coding in R that is enough to get started in Shiny. \
18+
**Easy to Get Started** – No need for web development skills, if you know coding in R that is enough to get started in Shiny.\
1919
**Interactivity** – Users can manipulate data and see updates instantly\
2020
**Data Visualization** – Generate interactive plots and tables effortlessly\
2121
**Deploy Anywhere** – Publish apps online with platforms like ShinyApps.io which is easy to share with others.
@@ -31,7 +31,7 @@ Shiny apps are structured in three main ways:\
3131

3232
Shiny’s **reactivity** makes apps dynamic. It works by updating outputs whenever inputs change.
3333

34-
Reactivity in Shiny can be seen in different forms : \
34+
Reactivity in Shiny can be seen in different forms :\
3535
🔹 **Reactive Inputs** – User-provided values (e.g., text boxes, dropdowns)\
3636
🔹 **Reactive Expressions** – Automatically recalculates when inputs change\
3737
🔹 **Reactive Outputs** – Dynamically updates tables, plots, and text based on inputs\

docs/about.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@
146146
<span class="menu-text">Events</span></a>
147147
</li>
148148
<li class="nav-item">
149-
<a class="nav-link" href="./blogs/index.qmd">
149+
<a class="nav-link" href="./blogs/index.html">
150150
<span class="menu-text">Blogs</span></a>
151151
</li>
152152
</ul>

docs/about/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@
112112
<span class="menu-text">Events</span></a>
113113
</li>
114114
<li class="nav-item">
115-
<a class="nav-link" href="../blogs/index.qmd">
115+
<a class="nav-link" href="../blogs/index.html">
116116
<span class="menu-text">Blogs</span></a>
117117
</li>
118118
</ul>

docs/about/mission.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@
112112
<span class="menu-text">Events</span></a>
113113
</li>
114114
<li class="nav-item">
115-
<a class="nav-link" href="../blogs/index.qmd">
115+
<a class="nav-link" href="../blogs/index.html">
116116
<span class="menu-text">Blogs</span></a>
117117
</li>
118118
</ul>

docs/about/org-team.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@
112112
<span class="menu-text">Events</span></a>
113113
</li>
114114
<li class="nav-item">
115-
<a class="nav-link" href="../blogs/index.qmd">
115+
<a class="nav-link" href="../blogs/index.html">
116116
<span class="menu-text">Blogs</span></a>
117117
</li>
118118
</ul>
1.1 MB
Loading

0 commit comments

Comments
 (0)