I have no idea what is going on with this slider component for UI kit. I've used UI kit successfully for months (including using the slider) and now, on this new site, it isn't rendering at all (list items showing up as default, no slide functionality, etc.).
I originally tried having local copies of UIKit and Jquery, but it was the same result. This occurs on my localhost server as well (so hopefully the error is a stupid mistake).
Entire php file:
<!DOCTYPE html>
<html>
<head>
<title>Burn Blue</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/uikit/2.24.3/css/uikit.min.css" />
<link rel="stylesheet" href="css/components/slider.min.css" />
</head>
<body>
<div data-uk-slider>
<div class="uk-slider-container">
<ul class="uk-slider">
<li class="uk-width-1-1" style="background-image: url('/images/slide-1.jpg');">Test</li>
<li class="uk-width-1-1" style="background-image: url('/images/slide-2.jpg');">Test</li>
<li class="uk-width-1-1" style="background-image: url('/images/slide-3.jpg');">Test</li>
<li class="uk-width-1-1" style="background-image: url('/images/slide-2.jpg');">Test</li>
</ul>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/uikit/2.24.3/js/uikit.min.js"></script>
<script src="js/components/slider.min.js"></script>
</body>
</html>
Link to page: http://burn.blue/slider.php
EDIT: It's now working correctly; I didn't realize I had to add the slider.min.js or slider.min.css.