This commit is contained in:
Elinorre 2020-01-16 19:24:14 +03:00
parent 784466a415
commit 2fda029ff1
5 changed files with 77 additions and 4 deletions

View File

@ -0,0 +1,16 @@
---
content_type: df-news
title: February site update
date: 2016-02-08
published: true
---
The site haven't been update for almost 6 months so it is time for some news.
First of all, the work on project is not stopped. The API's and core concepts are constantly updated. Last few months the main work was concentrated on refining the storage API and on new control architecture.
Second, sadly we failed to obtain a separate funding for the project in 2016, so it still will be developed mostly fro the purposes of "Troitsk nu-mass" experiment and in my free time (of which I sadly do not have much).
The work in near future will be concentrated on finalizing storage and control APIs and the main task is... tasks (the pull data flow model implementation).
The new [DataForge BitBucket repository](https://bitbucket.org/Altavir/dataforge/src/default/) is separated from "Troitsk nu-mass" code and therefore could be used as a standalone library. There is still quite a lot unsolved issues and a terrible shortage in documentation, but I am working on it.

View File

@ -0,0 +1,7 @@
---
content_type: df-news
title: Site update
date: 2017-08-02
published: true
---
Documentation and front update.

View File

@ -0,0 +1,8 @@
---
content_type: df-news
title: Poster talk on Lomonosov 2015 conference
date: 2015-08-16
published: true
---
The poster about DataForge was presented on Lomonosov 2015 conference on particle physics. The poster itself could be downloaded from [here](https://drive.google.com/file/d/0B9tlm5xMb9SdNjQwX0pncVpoYkk/view).

View File

@ -0,0 +1,7 @@
---
content_type: df-news
title: DataForge site launched
date: 2015-08-16
published: true
---
<img src="/images/dataforge/df_logo.png" alt="DataForge"/> This site is launched. The repository for site development is <a href="https://bitbucket.org/Altavir/dataforge-grain">here</a>.

View File

@ -1,8 +1,43 @@
import React from "react"
import {Link, graphql} from "gatsby"
import {graphql} from "gatsby"
import Layout from "../../components/dataforge/layout"
const NewsPage = ({data}) => (
<h1>hallo!</h1>
const NewsPage = ({ data }) => (
<Layout>
{data.posts.nodes.map(post => {
const title = post.frontmatter.title;
const date = post.frontmatter.date;
return(
<div class="post">
<div class="col-lg-12">
<h2><small style={{color: `rgb(119,119,119)`, fontSize: `19.5px`}}>{date}</small> {title}</h2>
</div>
<p
dangerouslySetInnerHTML = {{
__html: post.frontmatter.description || post.html,
}}
/>
<hr/>
</div>
)
})}
</Layout>
)
export default NewsPage
export const query = graphql`
query {
posts: allMarkdownRemark(filter: {frontmatter: {content_type: {eq: "df-news"}, published: {eq: true}}},
sort: {fields: [frontmatter___date], order: DESC}) {
nodes{
html
frontmatter {
date(formatString: "DD.MM.YYYY")
title
}
}
}
}`