Skip to content

Commit

Permalink
Merge pull request #317 from ssg-java3-240304/develop
Browse files Browse the repository at this point in the history
Merge Master 2024년 8월 30일
  • Loading branch information
jyna120 authored Aug 30, 2024
2 parents e8ca554 + b4a955f commit b69f5cd
Show file tree
Hide file tree
Showing 53 changed files with 399 additions and 1,530 deletions.
7 changes: 4 additions & 3 deletions src/main/java/com/readyauction/app/AppController.java
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,14 @@
import lombok.extern.slf4j.Slf4j;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;

@Controller
@RequestMapping("/index")
@Slf4j
public class AppController {

@GetMapping("/")
public String index() {
return "redirect:/auction";
@GetMapping("")
public void index() {
}
}
Binary file not shown.
Binary file not shown.
Binary file removed src/main/resources/static/assets/images/blog/bb1.png
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
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.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
351 changes: 0 additions & 351 deletions src/main/resources/templates/about.html

This file was deleted.

4 changes: 2 additions & 2 deletions src/main/resources/templates/auction/auction.html
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,11 @@
<div class="breadcrumb breadcrumb-style-one mb-0">
<div class="container">
<div class="col-lg-12 text-center">
<h1 class="breadcrumb-title">Auction</h1>
<h1 class="breadcrumb-title">경매 목록</h1>
<ul class="d-flex justify-content-center breadcrumb-items">
<li class="breadcrumb-item"><i class="bi bi-house-door"></i> <a th:href="@{/}">Home</a>
</li>
<li class="breadcrumb-item active">Auction</li>
<li class="breadcrumb-item active">경매 목록</li>
</ul>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/templates/auction/auctionDetails.html
Original file line number Diff line number Diff line change
Expand Up @@ -470,7 +470,7 @@ <h2>알림</h2>
<h1 class="breadcrumb-title">경매 물품 상세 정보</h1>
<ul class="d-flex justify-content-center breadcrumb-items">
<li class="breadcrumb-item"><i class="bi bi-house-door"></i> <a th:href="@{/}">Home</a></li>
<li class="breadcrumb-item active">Auction Details</li>
<li class="breadcrumb-item active">경매 물품 상세 정보</li>
</ul>
</div>
</div>
Expand Down
Loading

0 comments on commit b69f5cd

Please sign in to comment.