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 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77
|
Source: golang-github-yosssi-ace
Section: devel
Priority: extra
Maintainer: Debian Go Packaging Team <pkg-go-maintainers@lists.alioth.debian.org>
Uploaders: Anthony Fok <foka@debian.org>
Build-Depends: debhelper (>= 9),
dh-golang,
golang-any,
golang-github-yosssi-gohtml-dev
Standards-Version: 3.9.8
Homepage: https://github.com/yosssi/ace
Vcs-Browser: https://anonscm.debian.org/cgit/pkg-go/packages/golang-github-yosssi-ace.git
Vcs-Git: https://anonscm.debian.org/git/pkg-go/packages/golang-github-yosssi-ace.git
XS-Go-Import-Path: github.com/yosssi/ace
Package: golang-github-yosssi-ace-dev
Architecture: all
Depends: ${shlibs:Depends},
${misc:Depends},
golang-github-yosssi-gohtml-dev
Suggests: ace
Description: HTML template engine for Go (Go library)
Ace is an HTML template engine for Go. This is inspired by
Slim (http://slim-lang.com/) and Jade (http://jade-lang.com/).
This is a refinement of Gold (http://gold.yoss.si/).
.
Example:
.
= doctype html
html lang=en
head
title Hello Ace
= css
h1 { color: blue; }
body
h1 {{.Msg}}
#container.wrapper
p..
Ace is an HTML template engine for Go.
This engine simplifies HTML coding in Go web application development.
= javascript
console.log('Welcome to Ace');
.
This package provides the Ace library for the Go Programming Language
Package: ace
Architecture: any
Built-Using: ${misc:Built-Using}
Depends: ${shlibs:Depends},
${misc:Depends}
Suggests: golang-github-yosssi-ace-dev
Conflicts: libace-perl
Description: HTML template engine for Go (command-line tool)
Ace is an HTML template engine for Go. This is inspired by
Slim (http://slim-lang.com/) and Jade (http://jade-lang.com/).
This is a refinement of Gold (http://gold.yoss.si/).
.
Example:
.
= doctype html
html lang=en
head
title Hello Ace
= css
h1 { color: blue; }
body
h1 {{.Msg}}
#container.wrapper
p..
Ace is an HTML template engine for Go.
This engine simplifies HTML coding in Go web application development.
= javascript
console.log('Welcome to Ace');
.
This package provides the /usr/bin/ace command-line tool and example files.
Section: text
Priority: optional
|