blob: 3d2819019a0a69a89c1383ecb5dae95da3aee2f9 [file] [log] [blame]
// Copyright 2020 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
package templates
const TemplateTxt = `
{{ range $_, $license := .Used }}
================================================================================
License Category: {{ (getCategory $license) }}
{{ range $author := (getAuthors $license ) }}
--------------------------------------------------------------------------------
Authors/Contributors: {{ $author }}
{{ (getText $license $author) }}
{{ end }}
================================================================================
{{ end }}
`