Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Set up blog #85

Merged
merged 4 commits into from
Oct 15, 2020
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions _layouts/post.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
layout: default
---
<h3 class=blog-byline>
{{ page.date | date_to_string }}&nbsp;&#8211;&nbsp;{{ page.author }}</h3>
<h1>{{ page.title }}</h1>

{{ content }}
15 changes: 15 additions & 0 deletions _posts/2020-10-15-search_launch.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
---
layout: post
author: R.V.Guha
title: Search launch
---

Today, we are excited to share that Data Commons is accessible via natural language queries in Google search. At a time when data informs our understanding of so many issues--from public health and education to the evolving workforce and more--access to data has never been more important. Data Commons in Google search is a step in this direction, enabling users to explore data without the need for expertise or programming skills.

Three years ago, the Data Commons journey started at Google with a simple observation: our ability to use data to understand our world is frequently hampered by the difficulties in working with data. The difficulties of finding, cleaning and joining <a href="https://datacommons.org/datasets">datasets</a> effectively limit who gets to work with data.

Data Commons addresses this challenge head on, performing the tedious tasks of curating, joining and cleaning data sets at scale so that data users don’t have to. The result? Large scale and cloud accessible APIs to clean and normalize data originating from some of the most widely used datasets, including those from the US Census, World Bank, CDC and more. Available as a layer on top of the Knowledge Graph, Data Commons is now accessible to a much wider audience.

Data Commons is Open. Open Data, Open Source. We hope that like its elder sister Schema.org, it becomes one of the foundational layers of the Web. We know this can only happen if it is built in an open and collaborative fashion. We are actively looking for partnerships on every aspect of this project, and we look forward to <a href="https://datacommons.org/feedback">hearing</a> from you!

R.V.Guha & the Data Commons team
14 changes: 14 additions & 0 deletions _sass/blog.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
.blog-posts {
padding-left: 0;
list-style-type: none;
}

.blog-posts h2 {
margin-top: 0;
}

.blog-byline {
color: var(--dc-gray);
text-transform: uppercase;
font-size: 1rem;
}
1 change: 1 addition & 0 deletions assets/css/styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ $h5-font-size: $font-size-base * 1.1;
@import "sidebar-nav";
@import "markup";
@import "friendly_code";
@import "blog";

#main-header #main-nav {
padding-left: 0;
Expand Down
17 changes: 17 additions & 0 deletions blog.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
---
layout: default
title: Blog
---
<h1>Blog</h1>

<ul class="blog-posts">
{% for post in site.posts %}
<li>
<h3 class="blog-byline">
{{ post.date | date_to_string }}&nbsp;&#8211;&nbsp;{{ post.author }}
</h3>
<h2><a href="{{ post.url }}">{{ post.title }}</a></h2>
{{ post.content }}
</li>
{% endfor %}
</ul>