Skip to content

Instantly share code, notes, and snippets.

@yzdann
Created June 3, 2020 15:19
Show Gist options
  • Save yzdann/df17f5f137e1b88a919dffffb0e01c5f to your computer and use it in GitHub Desktop.
Save yzdann/df17f5f137e1b88a919dffffb0e01c5f to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>List of Links</title>
</head>
<body>
<h1>Links</h1>
<ul>
{% for link in links %}
<li><a href="{{ link }}">{{ link.split("://")[1].split(".")[-2] }}</a></li>
{% endfor %}
</ul>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment