course fixes

This commit is contained in:
Elinorre 2020-03-02 19:04:39 +03:00
parent 1b96d697df
commit 86bc4148bd
3 changed files with 16 additions and 2 deletions

View File

@ -71,7 +71,9 @@
"education": {
"bc_title": "Education",
"title": "Education",
"description": "Educational projects in the field of nuclear physics and methods for conducting and analyzing the results of a physical experiment are one of the key activities of the group." },
"description": "Educational projects in the field of nuclear physics and methods for conducting and analyzing the results of a physical experiment are one of the key activities of the group.",
"course1": "Details available at ",
"course2": "the course page" },
"math": {
"bc_title": "Maths",
"title": "Mathematical methods",

View File

@ -71,7 +71,9 @@
"education": {
"bc_title": "Образование",
"title": "Образование",
"description": "Образовательные проекты в побласти ядерной физики и методов проведения и анализа результатов физического эксперимента являются одним из ключевых направлений деятельности группы." },
"description": "Образовательные проекты в побласти ядерной физики и методов проведения и анализа результатов физического эксперимента являются одним из ключевых направлений деятельности группы.",
"course1": "Подробная информация доступна на ",
"course2": "странице курса" },
"math": {
"bc_title": "Математика",
"title": "Математические методы",

View File

@ -37,6 +37,7 @@ const SoftwarePage = ({ data }) => {
{posts.map(({node}) => {
const title = node.frontmatter.title;
const id = node.frontmatter.id;
const courseName = node.frontmatter.courseName;
return(
<div className="row" id={id}>
<div className="col-lg-12">
@ -47,6 +48,13 @@ const SoftwarePage = ({ data }) => {
__html: node.html,
}}
/>
<div className="card" style={{backgroundColor: `#F5F5F5`}}>
<div className="card-body" style={{padding: `10px`}}>
<p style={{textAlign: `center`, margin: `5px`}}>
<FormattedMessage id="education.course1"/><Link to={`/pages/${courseName}`}><FormattedMessage id="education.course2"/></Link>
</p>
</div>
</div>
</div>
</div>
)
@ -68,6 +76,7 @@ export const query = graphql`
shortTitle
title
id
courseName
}
}
}}
@ -81,6 +90,7 @@ export const query = graphql`
shortTitle
title
id
courseName
}
}
}}