This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <form> | |
| <div class="row row_fluid"> | |
| <div class="gr gr_4 gr_field gr_md_12"> | |
| <label for="first_name">First Name:</label> | |
| <input type="text" id="first_name" /> | |
| </div> | |
| <div class="gr gr_4 gr_field gr_md_12"> | |
| <label for="last_name">Last Name:</label> | |
| <input type="text" id="last_name" /> | |
| </div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <form> | |
| <div class="row row_fluid"> | |
| <div class="gr gr_4 gr_field gr_md_12"> | |
| <input type="email" name="email" placeholder="Email" /> | |
| </div> | |
| <div class="gr gr_4 gr_field gr_md_12"> | |
| <input type="password" name="password" placeholder="password" /> | |
| </div> | |
| <div class="gr gr_4"> | |
| <button class="bt bt_prm">Send</button> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <form> | |
| <div class="row"> | |
| <div class="gr gr_8 gr_md_12"> | |
| <div class="row"> | |
| <div class="gr gr_12 gr_field"> | |
| <input type="email" name="email" placeholder="Email" /> | |
| </div> | |
| </div> | |
| <div class="row"> | |
| <div class="gr gr_12 gr_field"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <div class="row row_fluid"> | |
| <div class="gr gr_4 gr_md_12 bg">4</div> | |
| <div class="gr gr_4 gr_md_6 bg">4</div> | |
| <div class="gr gr_4 gr_md_6 bg">4</div> | |
| </div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <div class="row row_fluid"> | |
| <div class="gr gr_4 gr_md_12 bg">4</div> | |
| <div class="gr gr_4 gr_md_12 bg">4</div> | |
| <div class="gr gr_4 gr_md_12 bg">4</div> | |
| </div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /* | |
| * Shortly | |
| */ | |
| # EOF |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| use Rubricate\Widget\DivWidget; | |
| $div = new DivWidget('Name: %s | Country: %s | Century: %d '); | |
| $div->setParam('Rainha Ginga'); | |
| $div->setParam('Angola'); | |
| $div->setParam(17); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| use Rubricate\Widget\DivWidget; | |
| /* Example 1 */ | |
| $div = new DivWidget('Text Here'); | |
| echo $div->getElement(); | |
| # <div>Text Here</div> | |
| /* Example 2*/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| use Rubricate\Widget\AnchorIfWidget; | |
| $if = (1 == 1); | |
| $href = 'https://rubricate.github.io'; | |
| $text = 'Rubricate'; | |
| $a = new AnchorIfWidget($if, $href, $text); | |
| echo $a->getElement(); |