Skip to content

Commit acf4f7a

Browse files
authored
Deploy portfolio on netlify (#2593)
Deploy portfolio on Netlify
1 parent d44d608 commit acf4f7a

File tree

1 file changed

+20
-7
lines changed

1 file changed

+20
-7
lines changed

docs/userGuide/templates.md

Lines changed: 20 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,25 @@ markbind init --template minimal
2727

2828
## Supported Templates
2929

30-
Name | Template key | Description | Quick Deploy
31-
---- | ------- | ----------- | ------------
32-
Default | `default` | Default template if `--template` is unspecified. Includes core features such as site and page navigation for a more convenient quick start. | <a href="https://app.netlify.com/start/deploy?repository=https://github.com/MarkBind/init-typical-netlify"><img src="https://www.netlify.com/img/deploy/button.svg" /></a>
33-
Minimal | `minimal` | Minimalistic template that gets you started quickly. | <a href="https://app.netlify.com/start/deploy?repository=https://github.com/MarkBind/init-minimal-netlify"><img src="https://www.netlify.com/img/deploy/button.svg" /></a>
34-
Project | `project` | Project documentation template serves as a good starting point for project developers. This template includes both a user guide and a developer guide, with some formatted dummy content. | <a href="https://markbind-template-project.netlify.app/"><img src="https://www.netlify.com/img/deploy/button.svg" /></a>
35-
Portfolio | `portfolio` | Portfolio template to quickly build your portfolio. | <a href="">Quick deploy link to come!</a>
30+
Name | Template key | Description | Quick Deploy | Sample Site
31+
---- | ------- | ----------- | ------------ | -------
32+
Default | `default` | Default template if `--template` is unspecified. Includes core features such as site and page navigation for a more convenient quick start. | <a href="https://app.netlify.com/start/deploy?repository=https://github.com/MarkBind/init-typical-netlify"><img src="https://www.netlify.com/img/deploy/button.svg" /></a> | <a href='https://markbind-template-typical.netlify.app'><button class="button">Preview</button></a>
33+
Minimal | `minimal` | Minimalistic template that gets you started quickly. | <a href="https://app.netlify.com/start/deploy?repository=https://github.com/MarkBind/init-minimal-netlify"><img src="https://www.netlify.com/img/deploy/button.svg" /></a> | <a href='https://markbind-template-minimal.netlify.app'><button class="button">Preview</button></a>
34+
Project | `project` | Project documentation template serves as a good starting point for project developers. This template includes both a user guide and a developer guide, with some formatted dummy content. | <a href="https://app.netlify.com/start/deploy?repository=https://github.com/MarkBind/init-project-netlify"><img src="https://www.netlify.com/img/deploy/button.svg" /></a> | <a href="https://markbind-template-project.netlify.app/"><button class="button">Preview</button></a>
35+
Portfolio | `portfolio` | Portfolio template to quickly build your portfolio. | <a href="https://app.netlify.com/start/deploy?repository=https://github.com/MarkBind/init-portfolio-netlify"><img src="https://www.netlify.com/img/deploy/button.svg" /></a> | <a href="https://portfolio-template-markbind.netlify.app/"><button class="button">Preview</button></a>
3636

3737
{% from "njk/common.njk" import previous_next %}
38-
{{ previous_next('addingNavigationButtons', '') }}
38+
{{ previous_next('addingNavigationButtons', '') }}
39+
40+
<style>
41+
.button {
42+
background-color: #2e51ed;
43+
color: white;
44+
padding: 4px 10px;
45+
border: none;
46+
border-radius: 6px;
47+
font-size: 16px;
48+
font-weight: bold;
49+
cursor: pointer;
50+
}
51+
</style>

0 commit comments

Comments
 (0)