about summary refs log tree commit diff
path: root/layouts/_default/project.html
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/_default/project.html')
-rw-r--r--layouts/_default/project.html68
1 files changed, 0 insertions, 68 deletions
diff --git a/layouts/_default/project.html b/layouts/_default/project.html
deleted file mode 100644
index 5bd36e0..0000000
--- a/layouts/_default/project.html
+++ /dev/null
@@ -1,68 +0,0 @@
-{{ define "main" }}
-{{ if .Menus }}
-<nav class="post-navigation">
-  {{ range .Menus }}
-  <a href="{{ .URL | absLangURL }}" title="{{ .Title }}">{{ .Name }}</a>
-  {{ end }}
-</nav>
-{{ end }}
-
-<article class="post h-entry">
-  <header class="post-header">
-    <h1 class="p-name post-title{{ if .Params.favorite }} favorite{{end}}{{ if .Params.draft }} draft{{end}}">{{ trim .Title  " " }}</h1>
-  </header>
-  <div class="content e-content">
-    <h2>Project info</h2>
-    <dl class="data">
-      <dt>Project site</dt>
-      <dd>
-      <a href="{{ .Params.projectUrl }}">
-        {{ .Params.name }}
-      </a>
-      </dd>
-      {{ if isSet .Params "author" }}
-        <dt>Creator</dt>
-        {{ if isSet .Params "authorurl" }}
-          <dd><a href={{.Params.authorURL}}>{{ .Params.author }}</a></dd>
-        {{ else }}
-          <dd>{{ .Params.author }}</dd>
-        {{ end }}
-      {{ end }}
-      {{ if isSet .Params "maintainers" }}
-        <dt>Maintainers</dt>
-        {{ range $maintainer := .Params.maintainers }}
-          {{ if isSet $maintainer "URL" }}
-          <dd><a href={{$maintainer.URL}}>{{ $maintainer.name }}</a></dd>
-          {{ else }}
-          <dd>{{ $maintainer.name }}</dd>
-          {{ end }}
-        {{ end }}
-      {{ end }}
-      <dt>Status</dt>
-      <dd>{{ .Params.projectStatus }}</dd>
-    </dl>
-    {{ .Content }}
-    <hr>
-    {{ if eq .Params.projectStatus "dead" }}
-    <p>
-      The project is currently dead. You can fork it if you find it helpful.
-    </p>
-    {{ else }}
-    <p>
-      The development of project is {{.Params.projectStatus}}.
-      You can help this project by contributing code, finding new issues,
-      suggesting new features, or donation.
-    </p>
-    {{ end }}
-  </div>
-  {{ partial "post-info.html" . }}
-</article>
-
-{{ if and (.Site.Params.paginationSinglePost) (ne .Type "page") }}
-  {{ partial "paginationPost.html" . }}
-{{ end }}
-
-
-{{ partial "custom-webring.html" }}
-
-{{ end }}