Skip to content

Commit e99501d

Browse files
committed
All: Update license URL, clarify icon class usage
Ref #455
1 parent c69a6cc commit e99501d

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

themes/jquery/footer-bottom.php

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
<?php
22
$links = array(
33
'Learning Center' => array(
4-
'icon' => 'pencil',
4+
'class' => 'icon-pencil',
55
'url' => 'https://learn.jquery.com/'
66
),
77
'Chat' => array(
8-
'icon' => 'comments',
8+
'class' => 'icon-comments',
99
'url' => 'https://jquery.com/support/'
1010
),
1111
'Twitter' => array(
12-
'icon' => 'twitter',
12+
'class' => 'icon-twitter',
1313
'url' => get_option( 'jquery_twitter_link' ) ?: 'https://twitter.com/jquery'
1414
),
1515
'GitHub' => array(
16-
'icon' => 'github',
16+
'class' => 'icon-github',
1717
'url' => 'https://github.com/jquery'
1818
)
1919
);
@@ -22,10 +22,10 @@
2222
<div id="legal" class="legal">
2323
<ul class="footer-site-links">
2424
<?php foreach ( $links as $title => $link ) : ?>
25-
<li><a class="icon-<?php echo $link[ 'icon' ]; ?>" href="<?php echo $link[ 'url' ]; ?>"><?php echo $title; ?></a></li>
25+
<li><a class="<?php echo $link[ 'class' ]; ?>" href="<?php echo $link[ 'url' ]; ?>"><?php echo $title; ?></a></li>
2626
<?php endforeach ?></ul>
2727
<p class="copyright">
28-
Copyright <?php echo date('Y'); ?> <a href="https://openjsf.org/">OpenJS Foundation</a> and jQuery contributors. All rights reserved. See <a href="https://jquery.org/license/">jQuery License</a> for more information. The <a href="https://openjsf.org/">OpenJS Foundation</a> has registered trademarks and uses trademarks. For a list of trademarks of the <a href="https://openjsf.org/">OpenJS Foundation</a>, please see our <a href="https://trademark-policy.openjsf.org/">Trademark Policy</a> and <a href="https://trademark-list.openjsf.org/">Trademark List</a>. Trademarks and logos not indicated on the <a href="https://trademark-list.openjsf.org/">list of OpenJS Foundation trademarks</a> are trademarks™ or registered® trademarks of their respective holders. Use of them does not imply any affiliation with or endorsement by them. OpenJS Foundation <a href="https://terms-of-use.openjsf.org/">Terms of Use</a>, <a href="https://privacy-policy.openjsf.org/">Privacy</a>, and <a href="https://www.linuxfoundation.org/cookies">Cookie</a> Policies also apply.
28+
Copyright <?php echo date('Y'); ?> <a href="https://openjsf.org/">OpenJS Foundation</a> and jQuery contributors. All rights reserved. See <a href="https://jquery.com/license/">jQuery License</a> for more information. The <a href="https://openjsf.org/">OpenJS Foundation</a> has registered trademarks and uses trademarks. For a list of trademarks of the <a href="https://openjsf.org/">OpenJS Foundation</a>, please see our <a href="https://trademark-policy.openjsf.org/">Trademark Policy</a> and <a href="https://trademark-list.openjsf.org/">Trademark List</a>. Trademarks and logos not indicated on the <a href="https://trademark-list.openjsf.org/">list of OpenJS Foundation trademarks</a> are trademarks™ or registered® trademarks of their respective holders. Use of them does not imply any affiliation with or endorsement by them. OpenJS Foundation <a href="https://terms-of-use.openjsf.org/">Terms of Use</a>, <a href="https://privacy-policy.openjsf.org/">Privacy</a>, and <a href="https://www.linuxfoundation.org/cookies">Cookie</a> Policies also apply.
2929
</p>
3030
<p><a href="https://www.digitalocean.com" class="do-link">Web hosting by Digital Ocean</a> | <a href="https://www.fastly.com/">CDN by Fastly</a> | <a href="https://wordpress.org/" class="wp-link">Powered by WordPress</a></p>
3131
</div>

0 commit comments

Comments
 (0)