Welcome to mirror list, hosted at ThFree Co, Russian Federation.

header.html « partials « layouts - github.com/4ever9/less.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b33026209c5aec243a82541d524cff2b2aa804bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<!doctype html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport"
          content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    {{ $options := (dict "targetPath" "less.css" "outputStyle" "compressed" "enableSourceMap" true) }}
    {{ $style := resources.Get "scss/less.scss" | resources.ToCSS $options }}
    <link href="/images/logo.png" rel="icon" type="image/ico">
    <link rel="stylesheet" href="{{ $style.Permalink }}">
    <link rel="stylesheet" href="//at.alicdn.com/t/font_1995642_svj67i6zduq.css">
    <title>面向自由编程</title>
</head>
<body>
<div class="container">
    <div class="nav">
        <a class="logo" href="/">
            <img src="/images/logo.png" alt="">
        </a>
        <ul class="nav-menu">
            <li>
                <a href="">系列</a>
            </li>
            <li>
                <a href="">关于</a>
            </li>
        </ul>
        <i class="icon icon-search"></i>
    </div>
</div>