-
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/develop' into function-get-par…
…ams/disjunctive-normal-form
- Loading branch information
Showing
9 changed files
with
316 additions
and
13 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,6 +15,7 @@ plugins: | |
|
||
phpcsutils: | ||
packagist: phpcsstandards/phpcsutils | ||
open_collective: php_codesniffer | ||
|
||
# Theme info. | ||
title: PHPCSUtils | ||
|
@@ -26,11 +27,13 @@ google_analytics: | |
# SEO info. | ||
tagline: "PHPCSUtils: A suite of utility functions for use with PHP_CodeSniffer." | ||
twitter: | ||
username: jrf_nl | ||
username: PHP_CodeSniffer | ||
card: summary | ||
hashtags: PHPCSUtils | ||
mastodon: | ||
username: "@[email protected]" | ||
author: | ||
twitter: jrf_nl | ||
twitter: PHP_CodeSniffer | ||
|
||
# Needed so the select HTML tags do not get removed *sigh* | ||
commonmark: | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -45,7 +45,21 @@ <h1><a href="{{ "/" | absolute_url }}">{{ site.title | default: site.github.repo | |
|
||
<p class="view"><a href="{{ site.github.repository_url }}">Visit the Project on GitHub <small>{{ site.github.repository_nwo }}</small></a></p> | ||
|
||
<p><a href="https://twitter.com/share" class="twitter-share-button" data-related="{{ site.twitter.username }}" data-count="none" data-hashtags="{{ site.twitter.hashtags }}">Tweet about it</a></p> | ||
<p><a href="https://opencollective.com/{{ site.phpcsutils.open_collective }}/contribute" target="_blank"> | ||
<img src="https://opencollective.com/{{ site.phpcsutils.open_collective }}/contribute/[email protected]?color=blue" width=300 /> | ||
</a></p> | ||
|
||
<div><a href="https://twitter.com/share" class="twitter-share-button" data-related="{{ site.twitter.username }}" data-count="none" data-hashtags="{{ site.twitter.hashtags }}">Tweet about it</a></div> | ||
|
||
<div class="mastodon-share-button" data-target="{{ site.url }}" data-name="{{ site.tagline }} by {{ site.mastodon.username }}" data-buttonstyle="btn btn-secondary" data-text="Toot"></div> | ||
|
||
<div id="modal" style="display: none;"> | ||
<label for="msb-address" name="instanceAddress">Instance address</label> | ||
<input id="msb-address" type="text" /><br/> | ||
<label for="msb-memorize-instance">Memorize instance</label> | ||
<input type="checkbox" id="msb-memorize-instance" /><br/> | ||
<button id="msb-share">share</button> | ||
</div> | ||
|
||
</header> | ||
<section> | ||
|
@@ -76,5 +90,21 @@ <h1><a href="{{ "/" | absolute_url }}">{{ site.title | default: site.github.repo | |
<script type="text/javascript"> | ||
!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+'://platform.twitter.com/widgets.js';fjs.parentNode.insertBefore(js,fjs);}}(document, 'script', 'twitter-wjs'); | ||
</script> | ||
|
||
<script> | ||
const msbConfig = { | ||
openModal: function () { | ||
document.getElementById('modal').style.display = 'block'; | ||
}, | ||
closeModal: function () { | ||
document.getElementById('modal').style.display = 'none'; | ||
}, | ||
addressFieldSelector: '#msb-address', | ||
buttonModalSelector: '#msb-share', | ||
memorizeFieldId: 'msb-memorize-instance', | ||
buttonIconHtml: '<i class="fa fa-mastodon" aria-hidden="true"></i>' | ||
}; | ||
</script> | ||
<script src="{{ "/assets/js/mastodon.js?v=" | append: site.github.build_revision | relative_url }}"></script> | ||
</body> | ||
</html> |
This file contains 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
Oops, something went wrong.