Welcome to mirror list, hosted at ThFree Co, Russian Federation.

buttons.md « shortcodes « content « exampleSite - github.com/vantagedesign/ace-documentation.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5d3a4623c010494be83b355419484a74147c378b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
+++
title = "Buttons"
description = ""
weight = 2
+++

The button shortcode allows you to add a button to the page. This button is a HTML *anchor* element and can thus be used to link to another page or website. 

{{< button style="primary" >}} Button {{< /button >}}
{{< button style="secondary" >}} Button {{< /button >}}
{{< button style="outline-primary" >}} Button {{< /button >}}
{{< button style="danger" >}} Button {{< /button >}}
{{< button style="warning" >}} Button {{< /button >}}
{{< button style="success" >}} Button {{< /button >}}
{{< button style="info" >}} Button {{< /button >}}

## Usage
Place the following shortcode on the page
{{< code lang="html" >}} 
{{</* button style="STYLE" link="https://yourwebsite.com" */>}} [content] {{</* /button */>}}
{{< /code >}}

### Parameters
#### *style*
The style parameter is directly applied to the alert as a class in the format *"btn-{STYLE}"*. Bootstrap comes with a variety of styles that can be used with this:  
- primary  
- secondary      
- danger   
- warning   
- success   
- info    

Each style can also be presented as an 'outline' variant by prefixing the style with 'outline-'.   
Example: <code>style="outline-primary"</code>.

#### *link*
The link parameter may consist of an URL leading to a page or other website. Simply use it by defining a URL for the button to link to.   
Example: <code>link="https://google.com"</code>.