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
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<title>________________</title> | |
<meta name="description" content="________________"> | |
<meta name="author" content="________________"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<link rel="stylesheet" href="main.css"> | |
</head> |
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
let out = []; | |
$(".list").first().find(".list-card-details").each((index, elem) => { | |
let $elem = $(elem); | |
let cardName = $elem.find(".js-card-name").text(); | |
let cardCategory = $elem.find(".js-card-labels").text(); | |
let cardDueDate = $elem.find(".js-due-date-text").text(); | |
let dueDateString = (cardDueDate === "") ? "" : `(${cardDueDate})`; | |
out.push(`${cardCategory}: ${cardName} ${dueDateString}`); | |
}); | |
out.join("\n"); |
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
<picture> | |
<!-- Landscape tablet / computers --> | |
<source media="(min-width: 1024px)" | |
sizes="(min-width: 1280px) 33vw, 50vw" | |
srcset="https://placehold.it/640 640w, | |
https://placehold.it/1024 1024w, | |
https://placehold.it/1280 1280w, | |
https://placehold.it/1440 1440w"> | |
<!-- Portrait tablets --> | |
<source media="(min-width: 415px)" |