├── VERSION ├── .gitignore ├── images ├── tn.png └── screenshot.png ├── archetypes └── default.md ├── layouts ├── _default │ ├── list.html │ └── single.html ├── index.html └── partials │ ├── footer.html │ ├── services.html │ ├── head.html │ ├── template.css │ ├── js.html │ ├── header.html │ └── nav.html ├── static ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.svg ├── css │ └── landing-page.css └── js │ ├── bootstrap.min.js │ └── bootstrap.js ├── exampleSite ├── content │ ├── post │ │ ├── first.md │ │ ├── second.md │ │ └── third.md │ └── img │ │ └── intro-bg.svg └── config.toml ├── theme.toml ├── LICENSE.md └── README.md /VERSION: -------------------------------------------------------------------------------- 1 | 0.1 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | public/ 2 | -------------------------------------------------------------------------------- /images/tn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsomar/github-project-landing-page/HEAD/images/tn.png -------------------------------------------------------------------------------- /archetypes/default.md: -------------------------------------------------------------------------------- 1 | +++ 2 | Description = "" 3 | Keywords = [] 4 | Tags = [] 5 | Categories = [] 6 | +++ 7 | -------------------------------------------------------------------------------- /images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsomar/github-project-landing-page/HEAD/images/screenshot.png -------------------------------------------------------------------------------- /layouts/_default/list.html: -------------------------------------------------------------------------------- 1 | {{ partial "head.html" . }} 2 | {{ partial "header.html" . }} 3 | {{ partial "services.html" . }} 4 | {{ partial "footer.html" . }} 5 | -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsomar/github-project-landing-page/HEAD/static/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsomar/github-project-landing-page/HEAD/static/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsomar/github-project-landing-page/HEAD/static/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /layouts/index.html: -------------------------------------------------------------------------------- 1 | {{ partial "head.html" . }} 2 | {{ partial "nav.html" . }} 3 | {{ partial "header.html" . }} 4 | {{ partial "services.html" . }} 5 | {{ partial "footer.html" . }} 6 | -------------------------------------------------------------------------------- /exampleSite/content/post/first.md: -------------------------------------------------------------------------------- 1 | +++ 2 | date = "2015-12-2T14:10:00+03:00" 3 | draft = false 4 | title = "First Post" 5 | weight = 1 6 | +++ 7 | 8 | First post 9 | Where you talk about how to install your project 10 | 11 | ``` 12 | brew install amazing-tool 13 | ``` 14 | -------------------------------------------------------------------------------- /exampleSite/content/post/second.md: -------------------------------------------------------------------------------- 1 | +++ 2 | date = "2015-12-2T14:10:00+03:00" 3 | draft = false 4 | title = "Second Post" 5 | weight = 2 6 | +++ 7 | 8 | Second post 9 | Usage maybe? 10 | 11 | ``` 12 | DoSomething() 13 | ``` 14 | 15 | And the output would be: 16 | 17 | ``` 18 | Something 19 | ``` 20 | -------------------------------------------------------------------------------- /exampleSite/content/post/third.md: -------------------------------------------------------------------------------- 1 | +++ 2 | date = "2015-12-2T14:10:00+03:00" 3 | draft = false 4 | title = "Third Post" 5 | weight = 3 6 | +++ 7 | 8 | Third post 9 | Get help 10 | 11 | - Ask questions here .... 12 | - Read this doc file 13 | - Concat me twitter [@ifnottrue](https://twitter.com/@ifnottrue) 14 | -------------------------------------------------------------------------------- /layouts/_default/single.html: -------------------------------------------------------------------------------- 1 | {{ partial "head.html" . }} 2 | {{ partial "nav.html" . }} 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | {{ .Title }} 14 | {{ .Content }} 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | {{ partial "footer.html" . }} 23 | -------------------------------------------------------------------------------- /layouts/partials/footer.html: -------------------------------------------------------------------------------- 1 | 2 | 16 | {{ partial "js.html" . }} 17 |