metadata.json 1.1 KB

1234567891011121314151617181920212223242526272829
  1. {
  2. "@context": "http://schema.org",
  3. "@type": "NewsArticle",
  4. "mainEntityOfPage": "{{ page.url | replace:'index.html','' | prepend: site.baseurl | prepend: site.url }}",
  5. "headline": "{% if page.title %}{{ page.title | escape }}{% else %}{{ site.title | escape }}{% endif %}",
  6. "datePublished": "{% if page.date %}{{ page.date | date_to_xmlschema }}{% else %}{{ site.time | date_to_xmlschema }}{% endif %}",
  7. "dateModified": "{% if page.date %}{{ page.date | date_to_xmlschema }}{% else %}{{ site.time | date_to_xmlschema }}{% endif %}",
  8. "description": "{{ page.content | strip_html | strip_newlines | truncate: 160 }}",
  9. "author": {
  10. "@type": "Person",
  11. "name": "{{ site.author }}"
  12. },
  13. "publisher": {
  14. "@type": "Organization",
  15. "name": "Data 100 at UC Berkeley",
  16. "logo": {
  17. "@type": "ImageObject",
  18. "url": "{{ site.logo | prepend: site.baseurl | prepend: site.url }}",
  19. "width": 60,
  20. "height": 60
  21. }
  22. },
  23. "image": {
  24. "@type": "ImageObject",
  25. "url": "{{ site.logo | prepend: site.baseurl | prepend: site.url }}",
  26. "height": 60,
  27. "width": 60
  28. }
  29. }