• This repository has been archived on 06/Dec/2022
  • Stars
    star
    56
  • Rank 511,751 (Top 11 %)
  • Language
    Go
  • License
    MIT License
  • Created over 5 years ago
  • Updated over 1 year ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Wrapper package for Go's template/html to allow for easy file-based template inheritance.

This repository moved to https://git.sr.ht/~dvko/extemplate on 2022-12-06 โš ๏ธ


Extemplate GoDoc Build Status Go Report Card Coverage

Extemplate is a small wrapper package around html/template to allow for easy file-based template inheritance.

File: templates/parent.tmpl

<html>
<head>
	<title>{{ block "title" }}Default title{{ end }}</title>
</head>
<body>
	{{ block "content" }}Default content{{ end }} 
</body>
</html>

File: templates/child.tmpl

{{ extends "parent.tmpl" }}
{{ define "title" }}Child title{{ end }}
{{ define "content" }}Hello world!{{ end }}

File: main.go

xt := extemplate.New()
xt.ParseDir("templates/", []string{".tmpl"})
_ = xt.ExecuteTemplate(os.Stdout, "child.tmpl", "no data needed") 
// Output: <html>.... Hello world! ....</html>

Extemplate recursively walks all files in the given directory and will parse the files matching the given extensions as a template. Templates are named by path and filename, relative to the root directory.

For example, calling ParseDir("templates/", []string{".tmpl"}) on the following directory structure:

templates/
  |__ admin/
  |      |__ index.tmpl
  |      |__ edit.tmpl
  |__ index.tmpl

Will result in the following templates:

admin/index.tmpl
admin/edit.tmpl
index.tmpl

Check out the tests and examples directory for more examples.

Benchmarks

You will most likely never have to worry about performance, when using this package properly. The benchmarks are purely listed here so we have a place to keep track of progress.

BenchmarkExtemplateGetLayoutForTemplate-8   	 2000000	       923 ns/op	     104 B/op	       3 allocs/op
BenchmarkExtemplateParseDir-8               	    5000	    227898 ns/op	   34864 B/op	     325 allocs/op

License

MIT

More Repositories

1

AltoRouter

PHP routing class. Lightweight yet flexible. Supports REST, dynamic and reversed routing.
PHP
1,205
star
2

PHP-Router

Simple PHP Router class (supports REST and reverse routing)
PHP
562
star
3

laravel-vat

EU VAT library for Laravel
PHP
121
star
4

vat

Go package for dealing with EU VAT. Does VAT number validation & rates retrieval.
Go
110
star
5

grender

Go package for easily rendering JSON/XML data and HTML templates
Go
96
star
6

plugin-endpoints

Register URL endpoints for which only certain WordPress plugins are enabled.
PHP
84
star
7

populate.js

Populate form fields from a JSON object.
HTML
70
star
8

wp-plugin-profiler

Basic profiler for WordPress plugins. Measures response times with and without a given plugin activated.
PHP
56
star
9

pepper-lang

The Pepper Programming Language
C
55
star
10

goseo

command line tool to assess readability and SEO score for any HTML document or web page
Go
54
star
11

change-username

A WordPress plugin to change usernames
PHP
52
star
12

advent-of-code

Solutions for Advent of Code puzzles. In C, C++, Python, Rust and Golang. All years.
C
33
star
13

1brc

C99 implementation of the 1 Billion Rows Challenge. 1๏ธโƒฃ๐Ÿ๐ŸŽ๏ธ Runs in ~1.7 seconds on my not-so-fast laptop CPU w/ 16GB RAM.
C
32
star
14

monkey-c-monkey-do

C implementation of the Monkey programming language. Repository moved to Sourcehut.
C
30
star
15

nederlang

Nederlandse programmeertaal ๐Ÿ‡ณ๐Ÿ‡ฑ. Geรฏnterpreteerd en met dynamische types. Met bytecode compiler en virtuele machine, in Rust.
Rust
29
star
16

wp-cdn-loader

Loads WordPress assets from a CDN instead of of local server.
PHP
22
star
17

moneybird-go

A Go client library for Moneybird
Go
18
star
18

gozer

Fast, opinionated and simple static site generator in a single static binary.
Go
16
star
19

unja

Template engine for C, inspired by Jinja and Liquid
C
13
star
20

smtp-mailer

A WordPress plugin that configures `wp_mail` to use SMTP.
PHP
13
star
21

dutchfirecalc.nl

Source code for dutchfirecalc.nl
Jupyter Notebook
10
star
22

respond

Go package for easily replying to HTTP requests with common response types.
Go
10
star
23

www.dvk.co

Site repository for my personal blog
Jupyter Notebook
4
star
24

pull-app

Simple app to track your pull-up volume
JavaScript
4
star
25

dotfiles

My dotfiles
Shell
4
star
26

www.dannyvankooten.com

My personal website, managed by Gozer.
Jupyter Notebook
3
star
27

moneybird-belastingdienst

Makkelijker kunnen zij het niet maken, wij wel.
HTML
2
star
28

top2000spotify

Maakt 'n Spotify playlist van je Top 2000 lijstje (of die van iemand anders).
JavaScript
2
star
29

stand

Stand is a periodic reminder to stand up from your desk
C
2
star
30

argos-crypto-watch

Lightweight C program for monitoring cryptocurrency price and volume changes in Argos.
C
1
star
31

pi-volume-control

Remote volume control for my Pi over HTTP
C
1
star
32

advent-of-code-2021

My solutions for Advent of Code 2021, in Python this time.
Python
1
star
33

advent-of-code-2019

My solutions for Advent of Code 2019, in Rust.
Rust
1
star
34

top-websites-compression

Researching compression applied by the top 10.000 websites
HTML
1
star
35

cnake

Snake in your terminal. In C, no dependencies.
C
1
star