-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
SOROKA-140: mock data for articles (#21)
SOROKA-140: mock data for articles
- Loading branch information
Showing
4 changed files
with
237 additions
and
148 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,55 +1,34 @@ | ||
import Petr from "../assets/images/articles_petr.jpg"; | ||
import PageLayout from "../components/PageLayout"; | ||
|
||
const SingleArticle = () => ( | ||
<PageLayout | ||
breadcrumbs={[ | ||
{ label: "Кабинет", link: "/cabinet" }, | ||
{ label: "Статьи", link: "/articles", active: true } | ||
]} | ||
> | ||
<article className="article_container"> | ||
<h1 className="article_title"> | ||
Приказал подать cамый большой бокал, какой только могли найти. | ||
<br /> | ||
Три этюда о кубке | ||
</h1> | ||
|
||
<div className="article_author flex row content--start items--start"> | ||
<div className="article_author_point"> | ||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"> | ||
<circle r="50%" cx="50%" cy="50%" fill="#0000ff" stroke="#0000ff" strokeWidth="0"></circle> | ||
</svg> | ||
import { useParams } from "react-router-dom"; | ||
import { ARTICLES } from "../utils/constants"; | ||
|
||
const SingleArticle = () => { | ||
const { id } = useParams(); | ||
const article = ARTICLES.find((article) => article.slug === id); | ||
return article ? ( | ||
<PageLayout | ||
breadcrumbs={[ | ||
{ label: "Кабинет", link: "/cabinet" }, | ||
{ label: "Статьи", link: "/articles", active: true } | ||
]} | ||
> | ||
<article className="article_container"> | ||
<h1 className="article_title">{article.title}</h1> | ||
|
||
<div className="article_author flex row content--start items--start"> | ||
<div className="article_author_point"> | ||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"> | ||
<circle r="50%" cx="50%" cy="50%" fill="#0000ff" stroke="#0000ff" strokeWidth="0"></circle> | ||
</svg> | ||
</div> | ||
<div className="article_author_name">Автор: {article.author}</div> | ||
</div> | ||
<div className="article_author_name">Автор: Марина Брюханова</div> | ||
</div> | ||
|
||
<h2 className="article_subtitle">Kубок заздравный</h2> | ||
|
||
<p className="article_content"> | ||
В образах ярких, выдающихся исторических личностей необыкновенно притягательны их человеческие, житейские привычки и | ||
пристрастия, которые многократно приближают к нам людей прошедших эпох, сокращая временную и социальную дистанцию. В | ||
этом смысле Петр Великий оставил потомкам исключительное нематериальное наследие, получившее воплощение в конкретных | ||
материальных памятниках. Мы же, со своей стороны, стремимся через них постичь личность первого российского императора. | ||
</p> | ||
|
||
<p className="article_content"> | ||
В образах ярких, выдающихся исторических личностей необыкновенно притягательны их человеческие, житейские привычки и | ||
пристрастия, которые многократно приближают к нам людей прошедших эпох, сокращая временную и социальную дистанцию. В | ||
этом смысле Петр Великий оставил потомкам исключительное нематериальное наследие, получившее воплощение в конкретных | ||
материальных памятниках. Мы же, со своей стороны, стремимся через них постичь личность первого российского императора. | ||
</p> | ||
|
||
<img className="article_image" src={Petr} alt="" /> | ||
|
||
<p className="article_content"> | ||
В образах ярких, выдающихся исторических личностей необыкновенно притягательны их человеческие, житейские привычки и | ||
пристрастия, которые многократно приближают к нам людей прошедших эпох, сокращая временную и социальную дистанцию. В | ||
этом смысле Петр Великий оставил потомкам исключительное нематериальное наследие, получившее воплощение в конкретных | ||
материальных памятниках. Мы же, со своей стороны, стремимся через них постичь личность первого российского императора. | ||
</p> | ||
</article> | ||
</PageLayout> | ||
); | ||
{article.content} | ||
</article> | ||
</PageLayout> | ||
) : ( | ||
<div>Error 404</div> | ||
); | ||
}; | ||
|
||
export default SingleArticle; |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.