Developer Center website. https://developers.write.as
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

14 satır
247 B

  1. package main
  2. import (
  3. "html/template"
  4. "path/filepath"
  5. )
  6. func getTemplate(name string) (*template.Template, error) {
  7. return template.New("").ParseFiles(
  8. filepath.Join(pagesDir, name+".tmpl"),
  9. filepath.Join(templatesDir, "base.tmpl"),
  10. )
  11. }