67 lines
2.1 KiB
HTML
67 lines
2.1 KiB
HTML
<!DOCTYPE html>
|
||
<html lang="en" xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout" layout:decorate="~{layout.htm}"
|
||
xmlns:th="http://www.thymeleaf.org" >
|
||
<head>
|
||
|
||
<title>Tweets</title>
|
||
</head>
|
||
<body>
|
||
<div layout:fragment="content" class='Home' >
|
||
<h2>Tweets</h2>
|
||
<div class='Tweet'>
|
||
<div class='Tweet-author'>
|
||
<a href="/app/profile/{uid}"
|
||
th:href="@{/profile/{uid}(uid='dan_abramov')}">Dan Abramov @dan_abramov</a>
|
||
</div>
|
||
<div class='Tweet-time'>
|
||
<sl-relative-time date="2020-07-15T09:17:00-04:00">2020-07-15T09:17:00-04:00</sl-relative-time>
|
||
</div>
|
||
<div class='Tweet-content'>Another use case for 'this.context' I think might be valid: forms. They're too painful right now.</div>
|
||
</div>
|
||
<div class='Tweet'>
|
||
<div class='Tweet-author'>
|
||
<a href="/app/profile/{uid}"
|
||
th:href="@{profile/{uid}(uid=afanasjevas)}"
|
||
>Eduardas Afanasjevas @afanasjevas</a>
|
||
</div>
|
||
<div class='Tweet-time'>
|
||
<sl-relative-time date="2024-04-15T09:17:00-04:00">2024-04-15T09:17:00-04:00</sl-relative-time></div>
|
||
<div class='Tweet-content'>I just published “What will Datasmoothie bring to the analytics startup landscape?” https://medium.com/@afanasjevas/what-will-datasmoothie-bring-to-the-analytics-startup-landscape-f7dab70d75c3?source=tw-81c4e81fe6f8-1427630532296</div>
|
||
</div>
|
||
<div class='Tweet'>
|
||
<div class='Tweet-author'>
|
||
<a href="/app/profile/{uid}"
|
||
th:href="@{profile/{uid}(uid=LNUGorg)}"
|
||
>LNUG @LNUGorg</a>
|
||
</div>
|
||
<div class='Tweet-time'>52m52 minutes ago</div>
|
||
<div class='Tweet-content'> new talks uploaded on our YouTube page - check them out http://bit.ly/1yoXSAO</div>
|
||
</div>
|
||
<style>
|
||
|
||
.Tweet {
|
||
border: 1px solid #eee;
|
||
border-radius: 3px;
|
||
padding: 10px;
|
||
border-bottom: none;
|
||
}
|
||
|
||
.Tweet:last-child {
|
||
border-bottom: 1px solid #eee;
|
||
}
|
||
|
||
.Tweet-author {
|
||
font-weight: bold;
|
||
display: inline-block;
|
||
}
|
||
|
||
.Tweet-time {
|
||
color: #888;
|
||
display: inline-block;
|
||
margin-left: 20px;
|
||
font-size: 12px;
|
||
}
|
||
</style>
|
||
</div>
|
||
</body>
|
||
</html>
|