Skip to content

Commit

Permalink
Set up blog (datacommonsorg#85)
Browse files Browse the repository at this point in the history
* staging blog changes

* link to keyword blog
  • Loading branch information
beets authored Oct 15, 2020
1 parent adfa578 commit ea36436
Show file tree
Hide file tree
Showing 5 changed files with 57 additions and 0 deletions.
10 changes: 10 additions & 0 deletions _layouts/post.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
layout: default
---
<h3><a href="/blog.html">Blog</a></h3>

<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: Data Commons, now accessible on Google Search
---

Today, we are excited to share that <a href="https://blog.google/products/search/search-on/">Data Commons is accessible via natural language queries in Google search</a>. 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>

0 comments on commit ea36436

Please sign in to comment.