mails.html 951 字节
Newer Older
E
edisonxiang 已提交
1 2 3 4
<div class="table-responsive">
    <table class="table table-bordered table-striped">
        <thead>
            <tr>
E
edisonxiang 已提交
5 6 7
                <th><span>{{ default "List Name" (.Get 0) }}</span></th>
                <th><span>{{ default "Post Address" (.Get 1) }}</span></th>
                <th><span>{{ default "Description" (.Get 2) }}</span></th>
E
edisonxiang 已提交
8 9 10 11 12 13 14
            </tr>
        </thead>
        <tbody>
            {{ range where $.Page.Site.Pages "Type" "maillist" }}
            {{ if .Params }}
            <tr>
                <td>
15
                    <a href="{{ .Params.websitelink}}" target="_blank">{{ .Params.listname }}</a>
E
edisonxiang 已提交
16 17
                </td>
                <td>
E
edisonxiang 已提交
18
                    {{ .Params.emailaddress }}
E
edisonxiang 已提交
19 20 21 22 23 24 25 26 27
                </td>
                <td>
                    {{ .Params.description }}
                </td>
            </tr>
            {{ end }}
            {{ end }}
        </tbody>
    </table>
E
edisonxiang 已提交
28
</div>