This file contains 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
<div style="text-align: center; font-family: Arial,sans-serif"> | |
<img src="${userImage}" style="width: 100px; height: 100px;"> | |
<h1 id="report-title">${salute} ${userName} 👋</h1> | |
<h3 id="new-followers-a">You've got ${newFollowersNumber} new followers 🎉</h3> | |
<h3 id="new-mentions-a">You've got ${newMentionsNumber} new mentions 🎊</h3> | |
<h4 id="unfollow-a"> But ${unfollowNumber} user unfollowed you 😢</h4> | |
<h4 id="new-total-followers-number">Now you have ${newTotalFollowersNumber} followers in total 🥳</h4> | |
<hr style="border-color: #64646436;"> | |
<div style="text-align: left;"> | |
<h3 id="new-followers-list-title">> New followers </h3> | |
<ul id="new-followers-list-details" style="list-style-type: none;"> | |
<li template loop> | |
<img src="${userImage}" style="width: 50px; height: 50px;"> | |
<strong style="font-size: 20px;">${userAccountName}</strong> | |
<span style="font-size: 15px;">${userName}</span> | |
<span style="font-size: 15px;">${userDescription}</span> | |
<span style="font-size: 15px;">${userCompany}</span> | |
<span style="font-size: 15px;">${userLocation}</span> | |
</li> | |
</ul> | |
</div> | |
<!-- Same as above but for un-followers --> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment