mirror of
https://github.com/feathericons/feather.git
synced 2023-08-10 21:13:24 +03:00
33 lines
1.0 KiB
HTML
33 lines
1.0 KiB
HTML
---
|
|
title: Feather
|
|
description: Feather is a collection of simply beautiful open source icons. Each icon is designed on a 24x24 grid with an emphasis on consistency and simplicity.
|
|
---
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<title>{{ page.title }}</title>
|
|
<meta name="description" content="{{ page.description }}">
|
|
<meta property="og:title" content="{{ page.title }}">
|
|
<meta property="og:description" content="{{ page.description }}">
|
|
<meta name="twitter:card" content="summary">
|
|
|
|
<link rel="shortcut icon" type="image/png" href="assets/favicon.png">
|
|
|
|
<link href="https://fonts.googleapis.com/css?family=Rubik:300,400" rel="stylesheet">
|
|
<link rel="stylesheet" href="style.css">
|
|
|
|
{% if site.google_analytics and jekyll.environment == 'production' %}
|
|
{% include analytics.html %}
|
|
{% endif %}
|
|
</head>
|
|
<body>
|
|
{% include header.html %}
|
|
{% include icons.html %}
|
|
{% include request.html %}
|
|
{% include footer.html %}
|
|
</body>
|
|
</html>
|