-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
데이터 작성 필요
- Loading branch information
Showing
7 changed files
with
168 additions
and
37 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
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 |
---|---|---|
@@ -1,12 +1,12 @@ | ||
- name: Home | ||
link: / | ||
- name: Blog | ||
link: /blog/ | ||
- name: Project | ||
link: /project/ | ||
- name: About Us | ||
link: /about-us/ | ||
- name: Member | ||
link: /member/ | ||
- name: Blog | ||
link: /blog/ | ||
- name: Study | ||
link: /study/ | ||
- name: About Us | ||
link: /about-us/ | ||
- name: Project | ||
link: /project/ |
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,75 @@ | ||
- title: Spring Study | ||
tags: | ||
- Spring | ||
- Java | ||
description: "스프링 프레임워크를 공부하며 스프링의 기본적인 개념과 사용법을 익히는 스터디입니다." | ||
start: 2021-03-02 | ||
end: 2021-05-25 | ||
image: /assets/img/logos/Spring-Boot-Logo.png | ||
members: | ||
- id: cmsong111 | ||
- id: jhkim | ||
|
||
- title: 리액티브 스프링 Study | ||
tags: | ||
- Spring | ||
- Java | ||
description: "스프링 프레임워크를 공부하며 스프링의 기본적인 개념과 사용법을 익히는 스터디입니다." | ||
start: 2021-03-02 | ||
end: 2023-05-25 | ||
image: /assets/img/logos/Spring-Boot-Logo.png | ||
members: | ||
- id: cmsong111 | ||
- id: jhkim | ||
|
||
- title: Web Basic 스터디 | ||
tags: | ||
- Web | ||
- HTML | ||
- CSS | ||
- JavaScript | ||
description: "웹 프론트엔드 개발을 위한 기초 지식을 습득하는 스터디입니다." | ||
start: 2021-02-15 | ||
end: 2022-04-30 | ||
image: /assets/img/logos/web-logo.png | ||
members: | ||
- id: jhkim | ||
- id: cmsong111 | ||
|
||
- title: Spring Study | ||
tags: | ||
- Spring | ||
- Java | ||
description: "스프링 프레임워크를 공부하며 스프링의 기본적인 개념과 사용법을 익히는 스터디입니다." | ||
start: 2021-03-02 | ||
end: 2021-05-25 | ||
image: /assets/img/logos/Spring-Boot-Logo.png | ||
members: | ||
- id: cmsong111 | ||
- id: jhkim | ||
|
||
- title: 리액티브 스프링 Study | ||
tags: | ||
- Spring | ||
- Java | ||
description: "스프링 프레임워크를 공부하며 스프링의 기본적인 개념과 사용법을 익히는 스터디입니다." | ||
start: 2021-03-02 | ||
end: 2023-05-25 | ||
image: /assets/img/logos/Spring-Boot-Logo.png | ||
members: | ||
- id: cmsong111 | ||
- id: jhkim | ||
|
||
- title: Web Basic 스터디 | ||
tags: | ||
- Web | ||
- HTML | ||
- CSS | ||
- JavaScript | ||
description: "웹 프론트엔드 개발을 위한 기초 지식을 습득하는 스터디입니다." | ||
start: 2021-02-15 | ||
end: 2022-04-30 | ||
image: /assets/img/logos/web-logo.png | ||
members: | ||
- id: jhkim | ||
- id: cmsong111 |
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,47 @@ | ||
--- | ||
layout: default | ||
title: Study | ||
permalink: /study/ | ||
--- | ||
|
||
<style> | ||
img { | ||
height: 180px; | ||
width: 100%; | ||
object-fit: contain; | ||
} | ||
</style> | ||
|
||
Study | ||
|
||
📖 스터디 진행 | ||
<div class="container"> | ||
<div class="row row-cols-1 row-cols-md-2 row-cols-lg-3"> | ||
{% assign sorted = site.data.studies | sort: 'end' | reverse %} | ||
{% for study in sorted %} | ||
<div class="card" style="width: 18rem;"> | ||
<img class="card-img-top" src="{{ study.image | relative_url }}" alt="Card image cap"> | ||
<div class="card-body"> | ||
<h4 class="card-title"> | ||
{{ study.title }} | ||
</h4> | ||
<p class="card-text"> | ||
{{ study.description }} | ||
</p> | ||
참가자 | ||
<ul> | ||
{% for member in study.members %} | ||
<li>{{ member.id }}</li> | ||
{% endfor %} | ||
</ul> | ||
|
||
</div> | ||
<div class="card-footer bg-transparent "> | ||
{% for tag in study.tags %} | ||
<span class="badge bg-secondary">{{ tag }}</span> | ||
{% endfor %} | ||
</div> | ||
</div> | ||
{% endfor %} | ||
</div> | ||
</div> |
This file was deleted.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.