JSFiddle - React, Tailwind, and code Playground

by Doeke Wartena

HTML

<div id="container">
  
  <h1 class="title">
  </h1>
  
  
  

</div>

JavaScript

$(function() {

 var data = [
  {
    title: "Shooting Ourselves",
    quote: "A cubist portrait of the war machine",
    endline: "— by Academy Award‑nominated director Christine Cynn"
  },
  {
    title: "Shooting Yaoundé",
    quote: "‘This is André. This gun is now your father and your mother.’",
    //endline: ""
    link: ["Watch Excerpt", "/todo"]
  },
  {
    title: "Shooting Volker",
    quote: "‘I had to get up at night to convince myself that my children stil had their hands.’",
    link: ["Watch Excerpt", "/todo"]
  }
  ];
  
  var index = 0;
  
  $(".title").html(data[0]["title"]);
  
  
  
	console.log(data);
  
  

});

 
 

/*
Shooting
Ourselves

A cubist portrait
of the war machine
— by Academy
Award‑nominated director
Christine Cynn

---

Shooting
Yaoundé

‘This is André. This
gun is now your father
and your mother.’ Watch Excerpt
---

Shooting
Volker

‘I had to get up at night
to convince myself
that my children still
had their hands.’ Watch Excerpt

---
*/