Compare commits
No commits in common. "01cd47dd5e8cb1c6704324203ba5702b62143d8b" and "2cfaf89b3f30d1498d71a8048ac3ac09ed6b4d41" have entirely different histories.
01cd47dd5e
...
2cfaf89b3f
13 changed files with 10396 additions and 15 deletions
|
@ -1,6 +1,6 @@
|
||||||
<div class="card card-primary">
|
<div class="card card-primary">
|
||||||
<div class="card-header"><i class="fa fa-rss"></i> Publications</div>
|
<div class="card-header"><i class="fa fa-rss"></i> Publications</div>
|
||||||
<div class="card-menu trim-that">
|
<div class="card-menu">
|
||||||
<?php
|
<?php
|
||||||
wp_get_archives( array(
|
wp_get_archives( array(
|
||||||
'type' => 'postbypost',
|
'type' => 'postbypost',
|
||||||
|
|
|
@ -3,6 +3,6 @@
|
||||||
|
|
||||||
<?php include(TEMPLATEPATH . '/components/footer-content.php'); ?>
|
<?php include(TEMPLATEPATH . '/components/footer-content.php'); ?>
|
||||||
<?php wp_footer(); ?>
|
<?php wp_footer(); ?>
|
||||||
<script src="<?php echo get_template_directory_uri();?>/js/trim.js"></script>
|
<script src="<?php echo get_template_directory_uri();?>/dep/jquery/js/jquery.min.js"></script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -24,8 +24,6 @@
|
||||||
|
|
||||||
<!-- CSS -->
|
<!-- CSS -->
|
||||||
<link href="<?php bloginfo('stylesheet_url'); ?>" rel="stylesheet"/>
|
<link href="<?php bloginfo('stylesheet_url'); ?>" rel="stylesheet"/>
|
||||||
|
|
||||||
<script src="<?php echo get_template_directory_uri();?>/dep/jquery/jquery.js"></script>
|
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<!-- Début du vrai HTML -->
|
<!-- Début du vrai HTML -->
|
||||||
|
|
6444
js/bootstrap.bundle.js
vendored
Normal file
6444
js/bootstrap.bundle.js
vendored
Normal file
File diff suppressed because it is too large
Load diff
1
js/bootstrap.bundle.js.map
Normal file
1
js/bootstrap.bundle.js.map
Normal file
File diff suppressed because one or more lines are too long
7
js/bootstrap.bundle.min.js
vendored
Normal file
7
js/bootstrap.bundle.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
1
js/bootstrap.bundle.min.js.map
Normal file
1
js/bootstrap.bundle.min.js.map
Normal file
File diff suppressed because one or more lines are too long
3927
js/bootstrap.js
vendored
Normal file
3927
js/bootstrap.js
vendored
Normal file
File diff suppressed because it is too large
Load diff
1
js/bootstrap.js.map
Normal file
1
js/bootstrap.js.map
Normal file
File diff suppressed because one or more lines are too long
7
js/bootstrap.min.js
vendored
Normal file
7
js/bootstrap.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
1
js/bootstrap.min.js.map
Normal file
1
js/bootstrap.min.js.map
Normal file
File diff suppressed because one or more lines are too long
5
js/jquery.min.js
vendored
Normal file
5
js/jquery.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
11
js/trim.js
11
js/trim.js
|
@ -1,11 +0,0 @@
|
||||||
var length = 35;
|
|
||||||
|
|
||||||
$(function(){
|
|
||||||
$(".trim-that a, limit").each(function(i){
|
|
||||||
len=$(this).text().length;
|
|
||||||
if(len>length)
|
|
||||||
{
|
|
||||||
$(this).text($(this).text().substr(0,(length-3))+'...');
|
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
Reference in a new issue