Last active
September 6, 2019 09:28
-
-
Save jacobovidal/4485459f2c43492b796260e64ed9abde to your computer and use it in GitHub Desktop.
Landing Page Template + CSV feed
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
title | description | hero_image | form_id | slug | |
---|---|---|---|---|---|
Page title 1 | This is a page description 1 | https://www.example.com/image1.jpg | 123456789 | landing-slug-1 | |
Page title 2 | This is a page description 2 | https://www.example.com/image2.jpg | 123456789 | landing-slug-2 | |
Page title 3 | This is a page description 3 | https://www.example.com/image3.jpg | 123456789 | landing-slug-3 | |
Page title 4 | This is a page description 4 | https://www.example.com/image4.jpg | 123456789 | landing-slug-4 | |
Page title 5 | This is a page description 5 | https://www.example.com/image5.jpg | 123456789 | landing-slug-5 | |
Page title 6 | This is a page description 6 | https://www.example.com/image6.jpg | 123456789 | landing-slug-6 | |
Page title 7 | This is a page description 7 | https://www.example.com/image7.jpg | 123456789 | landing-slug-7 | |
Page title 8 | This is a page description 8 | https://www.example.com/image8.jpg | 123456789 | landing-slug-8 | |
Page title 9 | This is a page description 9 | https://www.example.com/image9.jpg | 123456789 | landing-slug-9 | |
Page title 10 | This is a page description 10 | https://www.example.com/image10.jpg | 123456789 | landing-slug-10 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no"> | |
<link href="assets/css/page.min.css" rel="stylesheet"> | |
<link rel="apple-touch-icon" href="assets/img/arengu-favicon.png"> | |
<link rel="icon" href="assets/img/arengu-favicon.png"> | |
<title>{{title}}</title> | |
<script async src="https://sdk.arengu.com/forms.js"></script> | |
</head> | |
<body class="layout-centered"> | |
<main class="main-content"> | |
<div class="col-auto"> | |
<img src="{{hero_image}}"> | |
</div> | |
<div class="col-auto"> | |
<h1>{{title}}</h1> | |
<p>{{description}}</p> | |
<div data-arengu-form-id="{{form_id}}"></div> | |
</div> | |
</main> | |
<script src="assets/js/page.min.js"></script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment