    <style type="text/css">
        .buy{ display:none !important;}
        .rating{ right:10px !important;}
    </style>
    <style type="text/css">
        .ttw-music-player{ background:#111111; !important;}
    </style>
    <style type="text/css">
        .ttw-music-player .tracklist, .ttw-music-player .buy, .ttw-music-player .description, .ttw-music-player
        .player .title, .ttw-music-player .artist, .ttw-music-player .artist-outer {
            color:#ffffff; !important;
        }
    </style>
    <link href="https://alvaromusic.com/wp-content/plugins/html5-jquery-audio-player/includes/css/style.css" type="text/css" rel="stylesheet" media="screen" />
    <script type="text/javascript" src="https://alvaromusic.com/wp-content/plugins/html5-jquery-audio-player/includes/jquery-jplayer/jquery.jplayer.js"></script>
    <script type="text/javascript">
/**
 * Originally created by 23rd and Walnut for Codebasehero.com, then modified for WordPress plugin by Enigma Digital
 * www.23andwalnut.com
 * www.codebasehero.com
 * www.enigmaweb.com.au
 * License: MIT License
 */

(function($) {
    $.fn.ttwMusicPlayer = function(playlist, userOptions) {
        var $self = this, defaultOptions, options, cssSelector, appMgr, playlistMgr, interfaceMgr, ratingsMgr, playlist,
                layout, ratings, myPlaylist, current;

        cssSelector = {
            jPlayer: "#jquery_jplayer",
            jPlayerInterface: '.jp-interface',
            playerPrevious: ".jp-interface .jp-previous",
            playerNext: ".jp-interface .jp-next",
            trackList:'.tracklist',
            tracks:'.tracks',
            track:'.track',
            trackRating:'.rating-bar',
            trackInfo:'.track-info',
            rating:'.rating',
            ratingLevel:'.rating-level',
            ratingLevelOn:'.on',
			rating_succes:'.rating-succes',
            title: '.title',
            duration: '.duration',
            buy:'.buy',
            buyNotActive:'.not-active',
            playing:'.playing',
            moreButton:'.more',
            player:'.player',
            artist:'.artist',
            artistOuter:'.artist-outer',
            albumCover:'.img',
            description:'.description',
            descriptionShowing:'.showing'
        };

        defaultOptions = {
            ratingCallback:null,
            currencySymbol:'$',
            buyText:'BUY',
            tracksToShow:5,
            autoplay:false,
            jPlayer:{}
        };

        options = $.extend(true, {}, defaultOptions, userOptions);

        myPlaylist = playlist;

        current = 0;

        appMgr = function() {
            playlist = new playlistMgr();
            layout = new interfaceMgr();

            layout.buildInterface();
            playlist.init(options.jPlayer);

            //don't initialize the ratings until the playlist has been built, which wont happen until after the jPlayer ready event
            $self.bind('mbPlaylistLoaded', function() {
                $self.bind('mbInterfaceBuilt', function() {
                    ratings = new ratingsMgr();
                });
                layout.init();

            });
        };

        playlistMgr = function() {

            var playing = false, markup, $myJplayer = {},$tracks,showHeight = 0,remainingHeight = 0,$tracksWrapper, $more;

            markup = {
                listItem:'<li class="track">' +
                            '<span class="title"></span>' +
                            '<span class="duration"></span>' +
                            '<a href="#" class="buy not-active" target="_blank"></a>' +
                        '</li>',
                ratingBar:'<span class="rating-level rating-bar"></span>'
            };

            function init(playlistOptions) {

                $myJplayer = $('.ttw-music-player .jPlayer-container');


                var jPlayerDefaults, jPlayerOptions;

                jPlayerDefaults = {
                    swfPath: "jquery-jplayer",
                    supplied: "mp3, oga",
                    solution:'html, flash',
                    cssSelectorAncestor:  cssSelector.jPlayerInterface,
                    errorAlerts: false,
                    warningAlerts: false
                };

                //apply any user defined jPlayer options
                jPlayerOptions = $.extend(true, {}, jPlayerDefaults, playlistOptions);

                $myJplayer.bind($.jPlayer.event.ready, function() {

                    //Bind jPlayer events. Do not want to pass in options object to prevent them from being overridden by the user
                    $myJplayer.bind($.jPlayer.event.ended, function(event) {
                        playlistNext();
                    });

                    $myJplayer.bind($.jPlayer.event.play, function(event) {
                        $myJplayer.jPlayer("pauseOthers");
                        $tracks.eq(current).addClass(attr(cssSelector.playing)).siblings().removeClass(attr(cssSelector.playing));
                    });

                    $myJplayer.bind($.jPlayer.event.playing, function(event) {
                        playing = true;
                    });

                    $myJplayer.bind($.jPlayer.event.pause, function(event) {
                        playing = false;
                    });

                    //Bind next/prev click events
                    $(cssSelector.playerPrevious).click(function() {
                        playlistPrev();
                        $(this).blur();
                        return false;
                    });

                    $(cssSelector.playerNext).click(function() {
                        playlistNext();
                        $(this).blur();
                        return false;
                    });

                    $self.bind('mbInitPlaylistAdvance', function(e) {
                        var changeTo = this.getData('mbInitPlaylistAdvance');

                        if (changeTo != current) {
                            current = changeTo;
                            playlistAdvance(current);
                        }
                        else {
                            if (!$myJplayer.data('jPlayer').status.srcSet) {
                                playlistAdvance(0);
                            }
                            else {
                                togglePlay();
                            }
                        }
                    });

                    buildPlaylist();
                    //If the user doesn't want to wait for widget loads, start playlist now
                    $self.trigger('mbPlaylistLoaded');

                    playlistInit(options.autoplay);
                });

                //Initialize jPlayer
                $myJplayer.jPlayer(jPlayerOptions);
            }

            function playlistInit(autoplay) {
                current = 0;

                if (autoplay) {
                    playlistAdvance(current);
                }
                else {
                    playlistConfig(current);
                    $self.trigger('mbPlaylistInit');
                }
            }

            function playlistConfig(index) {
                current = index;
                $myJplayer.jPlayer("setMedia", myPlaylist[current]);
            }

            function playlistAdvance(index) {
                playlistConfig(index);

                if (index >= options.tracksToShow)
                    showMore();

                $self.trigger('mbPlaylistAdvance');
                $myJplayer.jPlayer("play");
            }

            function playlistNext() {
                var index = (current + 1 < myPlaylist.length) ? current + 1 : 0;
                playlistAdvance(index);
            }

            function playlistPrev() {
                var index = (current - 1 >= 0) ? current - 1 : myPlaylist.length - 1;
                playlistAdvance(index);
            }

            function togglePlay() {
                if (!playing)
                    $myJplayer.jPlayer("play");
                else $myJplayer.jPlayer("pause");
            }

            function buildPlaylist() {
                var $ratings = $();

                $tracksWrapper = $self.find(cssSelector.tracks);

                //set up the html for the track ratings
                for (var i = 0; i < 10; i++)
                    $ratings = $ratings.add(markup.ratingBar);

                for (var j = 0; j < myPlaylist.length; j++) {
                    var $track = $(markup.listItem);

                    //since $ratings refers to a specific object, if we just use .html($ratings) we would be moving the $rating object from one list item to the next
                    $track.find(cssSelector.rating).html($ratings.clone());

                    $track.find(cssSelector.title).html(trackName(j));

                    $track.find(cssSelector.duration).html(duration(j));

                    setRating('track', $track, j);

                    setBuyLink($track, j);

                    $track.data('index', j);

                    $tracksWrapper.append($track);
                }

                $tracks = $(cssSelector.track);

                $tracks.slice(0, options.tracksToShow).each(function() {
                    showHeight += $(this).outerHeight();
                });

                $tracks.slice(options.tracksToShow, myPlaylist.length).each(function() {
                    remainingHeight += $(this).outerHeight();
                });

                if (remainingHeight > 0) {
                    var $trackList = $(cssSelector.trackList);

                    $tracksWrapper.height(showHeight);
                    $trackList.addClass('show-more-button');

                    $trackList.find(cssSelector.moreButton).click(function() {
                        $more = $(this);

                        showMore();
                    });
                }

                $tracks.find('.title').click(function() {
                    playlistAdvance($(this).parents('li').data('index'));
                });
            }

            function showMore() {
                if (isUndefined($more))
                    $more = $self.find(cssSelector.moreButton);

                $tracksWrapper.animate({height: showHeight + remainingHeight}, function() {
                    $more.animate({opacity:0}, function() {
                        $more.slideUp(function() {
                            $more.parents(cssSelector.trackList).removeClass('show-more-button');
                            $more.remove();

                        });
                    });
                });
            }

            function duration(index) {
                return !isUndefined(myPlaylist[index].duration) ? myPlaylist[index].duration : '-';
            }

            function setBuyLink($track, index) {
                if (!isUndefined(myPlaylist[index].buy)) {
                    $track.find(cssSelector.buy).removeClass(attr(cssSelector.buyNotActive)).attr('href', myPlaylist[index].buy).html(buyText(index));
                }
            }

            function buyText(index) {
                return (!isUndefined(myPlaylist[index].price) ? options.currencySymbol + myPlaylist[index].price : '') + ' ' + options.buyText;
            }

            return{
                init:init,
                playlistInit:playlistInit,
                playlistAdvance:playlistAdvance,
                playlistNext:playlistNext,
                playlistPrev:playlistPrev,
                togglePlay:togglePlay,
                $myJplayer:$myJplayer
            };

        }; 

        ratingsMgr = function() {var $tracks = $self.find(cssSelector.track);
			//Handler for when user hovers over a rating
			$(cssSelector.rating).find(cssSelector.ratingLevel).hover(function() {
                    $(this).addClass('hover').prevAll().addClass('hover').end().nextAll().removeClass('hover');
            });
				//Restores previous rating when user is finished hovering (assuming there is no new rating)
			$(cssSelector.rating).mouseleave(function() {
                    $(this).find(cssSelector.ratingLevel).removeClass('hover');
            });
            

            function bindEvents() {
				$(cssSelector.rating_succes).css('display','none');
                //Set the new rating when the user clicks
                $(cssSelector.ratingLevel).click(function() {
                    var $this = $(this), rating = $this.parent().children().index($this) + 1, index;
					
					var trackname	=	$(cssSelector.title+':first').text();
					
					
					var postdata1	=	'action=my_special_ajax_call5&rating='+rating+'&trackname='+trackname;	
					//alert(postdata1);
					jQuery.ajax({
						type:'POST',
						url:ajaxurl,
						cache:false,
						data: postdata1,
						beforeSend:function(){
						
						},
						success:function(res){
							$(cssSelector.rating_succes).html(res).fadeIn(500).delay(1000).fadeOut(500);
							//window.setTimeout(function(){location.reload()},2000);
							
						}
				});
					
					
                    

                    $this.prevAll().add($this).addClass(attr(cssSelector.ratingLevelOn)).end().end().nextAll().removeClass(attr(cssSelector.ratingLevelOn));

                 
                });
            }

           

            bindEvents();};

        interfaceMgr = function() {

            var $player, $title, $artist, $albumCover;


            function init() {
                $player = $(cssSelector.player),
                        $title = $player.find(cssSelector.title),
                        $artist = $player.find(cssSelector.artist),
                        $albumCover = $player.find(cssSelector.albumCover);

                setDescription();

                $self.bind('mbPlaylistAdvance mbPlaylistInit', function() {
                    setTitle();
                    setArtist();
                    setRating('current', null, current);
                    setCover();
                });
            }

            function buildInterface() {
                var markup, $interface;

                //I would normally use the templating plugin for something like this, but I wanted to keep this plugin's footprint as small as possible
                markup = '<div class="ttw-music-player">' +
                        '<div class="player jp-interface">' +
                        '<div class="album-cover">' +
                        '<span class="img"></span>' +
                        '            <span class="highlight"></span>' +
                        '        </div>' +
                        '        <div class="track-info">' +
                        '            <p class="title"></p>' +
                        '            <p class="artist-outer">By <span class="artist"></span></p>' +
                        '            <div class="rating">' +
                        '                <span class="rating-level rating-star on"></span>' +
                        '                <span class="rating-level rating-star on"></span>' +
                        '                <span class="rating-level rating-star on"></span>' +
                        '                <span class="rating-level rating-star on"></span>' +
                        '                <span class="rating-level rating-star"></span>' +
						'				 <span class="rating-succes">Already rated</span>' +
                        '            </div>' +
                        '        </div>' +
                        '        <div class="player-controls">' +
                        '            <div class="main">' +
                        '                <div class="previous jp-previous"></div>' +
                        '                <div class="play jp-play"></div>' +
                        '                <div class="pause jp-pause"></div>' +
                        '                <div class="next jp-next"></div>' +
                        '<!-- These controls aren\'t used by this plugin, but jPlayer seems to require that they exist -->' +
                        '                <span class="unused-controls">' +
                        '                    <span class="jp-video-play"></span>' +
                        '                    <span class="jp-stop"></span>' +
                        '                    <span class="jp-mute"></span>' +
                        '                    <span class="jp-unmute"></span>' +
                        '                    <span class="jp-volume-bar"></span>' +
                        '                    <span class="jp-volume-bar-value"></span>' +
                        '                    <span class="jp-volume-max"></span>' +
                        '                    <span class="jp-current-time"></span>' +
                        '                    <span class="jp-duration"></span>' +
                        '                    <span class="jp-full-screen"></span>' +
                        '                    <span class="jp-restore-screen"></span>' +
                        '                    <span class="jp-repeat"></span>' +
                        '                    <span class="jp-repeat-off"></span>' +
                        '                    <span class="jp-gui"></span>' +
                        '                </span>' +
                        '            </div>' +
                        '            <div class="progress-wrapper">' +
                        '                <div class="progress jp-seek-bar">' +
                        '                    <div class="elapsed jp-play-bar"></div>' +
                        '                </div>' +
                        '            </div>' +
                        '        </div>' +
                        '    </div>' +
                        '    <div class="tracklist">' +
                        '        <ol class="tracks"> </ol>' +
                        '        <div class="more">View More...</div>' +
                        '    </div>' +
                        '    <div class="jPlayer-container"></div>' +
                        '</div>';
                
                $interface = $(markup).css({display:'none', opacity:0}).appendTo($self).slideDown('slow', function() {
                    $interface.animate({opacity:1});

                    $self.trigger('mbInterfaceBuilt');
                });
            }

            function setTitle() {
                $title.html(trackName(current));
            }

            function setArtist() {
                if (isUndefined(myPlaylist[current].artist))
                    $artist.parent(cssSelector.artistOuter).animate({opacity:0}, 'fast');
                else {
                    $artist.html(myPlaylist[current].artist).parent(cssSelector.artistOuter).animate({opacity:1}, 'fast');
                }
            }

            function setCover() {
                $albumCover.animate({opacity:0}, 'fast', function() {
                    if (!isUndefined(myPlaylist[current].cover)) {
                        var now = current;
                        
                            if(now == current)
                                $albumCover.css({opacity:1}).html('<img src="' + myPlaylist[current].cover + '" alt="album cover" />');
                    }
                });
            }

            function setDescription() {
                if (!isUndefined(options.description))
                    $self.find(cssSelector.description).html(options.description).addClass(attr(cssSelector.descriptionShowing)).slideDown();
            }

            return{
                buildInterface:buildInterface,
                init:init
            }

        };

        /** Common Functions **/
        function trackName(index) {
            if (!isUndefined(myPlaylist[index].title))
                return myPlaylist[index].title;
            else if (!isUndefined(myPlaylist[index].mp3))
                return fileName(myPlaylist[index].mp3);
            else if (!isUndefined(myPlaylist[index].oga))
                return fileName(myPlaylist[index].oga);
            else return '';
        }

        function fileName(path) {
            path = path.split('/');
            return path[path.length - 1];
        }

        function setRating(type, $track, index) {if (type == 'track') {
                if (!isUndefined(myPlaylist[index].rating)) {
                    applyTrackRating($track, myPlaylist[index].rating);
                }
            }
            else {
                //if the rating isn't set, use 0
                var rating = !isUndefined(myPlaylist[index].rating) ? Math.ceil(myPlaylist[index].rating) : 0;
                applyCurrentlyPlayingRating(rating);
            }
		}

        function applyCurrentlyPlayingRating(rating) {
             //reset the rating to 0, then set the rating defined above
            $self.find(cssSelector.trackInfo).find(cssSelector.ratingLevel).removeClass(attr(cssSelector.ratingLevelOn)).slice(0, rating).addClass(attr(cssSelector.ratingLevelOn));

        }

        function applyTrackRating($track, rating) {
            //multiply rating by 2 since the list ratings have 10 levels rather than 5
            $track.find(cssSelector.ratingLevel).removeClass(attr(cssSelector.ratingLevelOn)).slice(0, rating * 2).addClass(attr(cssSelector.ratingLevelOn));

        }


        /** Utility Functions **/
        function attr(selector) {
            return selector.substr(1);
        }

        function runCallback(callback) {
            var functionArgs = Array.prototype.slice.call(arguments, 1);

            if ($.isFunction(callback)) {
                callback.apply(this, functionArgs);
            }
        }

        function isUndefined(value) {
            return typeof value == 'undefined';
        }

        appMgr();
    };
})(jQuery);

(function($) {
// $('img.photo',this).imagesLoaded(myFunction)
// execute a callback when all images have loaded.
// needed because .load() doesn't work on cached images

// mit license. paul irish. 2010.
// webkit fix from Oren Solomianik. thx!

// callback function is passed the last image to load
//   as an argument, and the collection as `this`


    $.fn.imagesLoaded = function(callback) {
        var elems = this.filter('img'),
                len = elems.length;

        elems.bind('load',
                function() {
                    if (--len <= 0) {
                        callback.call(elems, this);
                    }
                }).each(function() {
            // cached images don't fire load sometimes, so we reset src.
            if (this.complete || this.complete === undefined) {
                var src = this.src;
                // webkit hack from http://groups.google.com/group/jquery-dev/browse_thread/thread/eee6ab7b2da50e1f
                // data uri bypasses webkit log warning (thx doug jones)
                this.src = "data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///ywAAAAAAQABAAACAUwAOw==";
                this.src = src;
            }
        });

        return this;
    };
})(jQuery);
</script>   
    <script type="text/javascript">
	var myPlaylist = [
                {
            mp3:'http://alvaromusic.com/audio/01 - Dont Let Me Go.mp3',
            oga:'http://alvaromusic.com/audio/01 - Dont Let Me Go.mp3',
            title:'Don\'t Let Me Go',
            artist:'Vito Alvaro',
            rating:'5',
            buy:'',
            price:'',
            duration:'3:49',
            cover:'http://alvaromusic.com/wp-content/uploads/2014/08/hardays-cover.jpg'
        },
        {
            mp3:'http://alvaromusic.com/audio/02 - Shoe Shine.mp3',
            oga:'http://alvaromusic.com/audio/02 - Shoe Shine.mp3',
            title:'Shoe Shine',
            artist:'Vito Alvaro',
            rating:'5',
            buy:'',
            price:'',
            duration:'3:32',
            cover:'http://alvaromusic.com/wp-content/uploads/2014/08/hardays-cover.jpg'
        },
        {
            mp3:'http://alvaromusic.com/audio/03 - Ill Make You Feel Fine.mp3',
            oga:'http://alvaromusic.com/audio/03 - Ill Make You Feel Fine.mp3',
            title:'I\'ll Make You Feel Fine',
            artist:'Vito Alvaro',
            rating:'5',
            buy:'',
            price:'',
            duration:'3:10',
            cover:'http://alvaromusic.com/wp-content/uploads/2014/08/hardays-cover.jpg'
        },
        {
            mp3:'http://alvaromusic.com/audio/04 - Mr Cadillac.mp3',
            oga:'http://alvaromusic.com/audio/04 - Mr Cadillac.mp3',
            title:'Mr. Cadillac',
            artist:'Vito Alvaro',
            rating:'5',
            buy:'',
            price:'',
            duration:'5:30',
            cover:'http://alvaromusic.com/wp-content/uploads/2014/08/hardays-cover.jpg'
        },
        {
            mp3:'http://alvaromusic.com/audio/05 - Hard Days Gone.mp3',
            oga:'http://alvaromusic.com/audio/05 - Hard Days Gone.mp3',
            title:'Hard Days Gone',
            artist:'Vito Alvaro',
            rating:'5',
            buy:'',
            price:'',
            duration:'3:41',
            cover:'http://alvaromusic.com/wp-content/uploads/2014/08/hardays-cover.jpg'
        },
        {
            mp3:'http://alvaromusic.com/audio/06 - Lonely In The Dark.mp3',
            oga:'http://alvaromusic.com/audio/06 - Lonely In The Dark.mp3',
            title:'Lonely In The Dark',
            artist:'Vito Alvaro',
            rating:'5',
            buy:'',
            price:'',
            duration:'3:54',
            cover:'http://alvaromusic.com/wp-content/uploads/2014/08/hardays-cover.jpg'
        },
        {
            mp3:'http://alvaromusic.com/audio/07 - Take A Good Look.mp3',
            oga:'http://alvaromusic.com/audio/07 - Take A Good Look.mp3',
            title:'Take A Good Look',
            artist:'Vito Alvaro',
            rating:'5',
            buy:'',
            price:'',
            duration:'4:03',
            cover:'http://alvaromusic.com/wp-content/uploads/2014/08/hardays-cover.jpg'
        },
        {
            mp3:'http://alvaromusic.com/audio/08 - I Was So Wrong.mp3',
            oga:'http://alvaromusic.com/audio/08 - I Was So Wrong.mp3',
            title:'I Was So Wrong',
            artist:'Vito Alvaro',
            rating:'5',
            buy:'',
            price:'',
            duration:'4:28',
            cover:'http://alvaromusic.com/wp-content/uploads/2014/08/hardays-cover.jpg'
        },
        {
            mp3:'http://alvaromusic.com/audio/09 - Closer Now.mp3',
            oga:'http://alvaromusic.com/audio/09 - Closer Now.mp3',
            title:'Closer Now (Until Forever)',
            artist:'Vito Alvaro',
            rating:'5',
            buy:'',
            price:'',
            duration:'3:06',
            cover:'http://alvaromusic.com/wp-content/uploads/2014/08/hardays-cover.jpg'
        },
        {
            mp3:'http://alvaromusic.com/audio/10 - Every Night.mp3',
            oga:'http://alvaromusic.com/audio/10 - Every Night.mp3',
            title:'Every Night',
            artist:'Vito Alvaro',
            rating:'5',
            buy:'',
            price:'',
            duration:'3:12',
            cover:'http://alvaromusic.com/wp-content/uploads/2014/08/hardays-cover.jpg'
        },
        ];
	jQuery(document).ready(function(){
            jQuery('#myplayer').ttwMusicPlayer(myPlaylist, {
                    currencySymbol:'',
                    description:"",
                    buyText:'',
                    tracksToShow:10,
                                            autoplay:false,
                                });
        });
 
    </script>
 {"id":2,"date":"2014-08-19T15:20:28","date_gmt":"2014-08-19T15:20:28","guid":{"rendered":"http:\/\/new.alvaromusic.com\/?page_id=2"},"modified":"2024-10-21T13:41:55","modified_gmt":"2024-10-21T17:41:55","slug":"sample-page","status":"publish","type":"page","link":"https:\/\/alvaromusic.com\/?page_id=2","title":{"rendered":"Hard Days Gone"},"content":{"rendered":"<p style=\"font-size: 12pt; color: #ffffff;\">Songs from the album Hard Days Gone, recorded during the summer of 1998.<br \/>\nReleased January 1999.<\/p>\n<tbody>\n<tr>\n<td><div id=\"myplayer\"><\/div><\/td>\n<\/tr>\n<\/tbody>\n","protected":false},"excerpt":{"rendered":"<p style=\"font-size: 12pt; color: #ffffff;\">Songs from the album Hard Days Gone, recorded during the summer of 1998.<br \/> Released January 1999.<\/p>\n<tr>\n<td><\/td>\n<\/tr>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":5,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-2","page","type-page","status-publish","hentry","nodate","item-wrap"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.0 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Hard Days Gone - Alvaro Music<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/alvaromusic.com\/?page_id=2\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Hard Days Gone - Alvaro Music\" \/>\n<meta property=\"og:description\" content=\"Songs from the album Hard Days Gone, recorded during the summer of 1998. Released January 1999.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/alvaromusic.com\/?page_id=2\" \/>\n<meta property=\"og:site_name\" content=\"Alvaro Music\" \/>\n<meta property=\"article:modified_time\" content=\"2024-10-21T17:41:55+00:00\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/alvaromusic.com\/?page_id=2\",\"url\":\"https:\/\/alvaromusic.com\/?page_id=2\",\"name\":\"Hard Days Gone - Alvaro Music\",\"isPartOf\":{\"@id\":\"https:\/\/alvaromusic.com\/#website\"},\"datePublished\":\"2014-08-19T15:20:28+00:00\",\"dateModified\":\"2024-10-21T17:41:55+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/alvaromusic.com\/?page_id=2#breadcrumb\"},\"inLanguage\":\"en\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/alvaromusic.com\/?page_id=2\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/alvaromusic.com\/?page_id=2#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/alvaromusic.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Hard Days Gone\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/alvaromusic.com\/#website\",\"url\":\"https:\/\/alvaromusic.com\/\",\"name\":\"Alvaro Music\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/alvaromusic.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Hard Days Gone - Alvaro Music","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/alvaromusic.com\/?page_id=2","og_locale":"en_US","og_type":"article","og_title":"Hard Days Gone - Alvaro Music","og_description":"Songs from the album Hard Days Gone, recorded during the summer of 1998. Released January 1999.","og_url":"https:\/\/alvaromusic.com\/?page_id=2","og_site_name":"Alvaro Music","article_modified_time":"2024-10-21T17:41:55+00:00","twitter_misc":{"Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/alvaromusic.com\/?page_id=2","url":"https:\/\/alvaromusic.com\/?page_id=2","name":"Hard Days Gone - Alvaro Music","isPartOf":{"@id":"https:\/\/alvaromusic.com\/#website"},"datePublished":"2014-08-19T15:20:28+00:00","dateModified":"2024-10-21T17:41:55+00:00","breadcrumb":{"@id":"https:\/\/alvaromusic.com\/?page_id=2#breadcrumb"},"inLanguage":"en","potentialAction":[{"@type":"ReadAction","target":["https:\/\/alvaromusic.com\/?page_id=2"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/alvaromusic.com\/?page_id=2#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/alvaromusic.com\/"},{"@type":"ListItem","position":2,"name":"Hard Days Gone"}]},{"@type":"WebSite","@id":"https:\/\/alvaromusic.com\/#website","url":"https:\/\/alvaromusic.com\/","name":"Alvaro Music","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/alvaromusic.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en"}]}},"_links":{"self":[{"href":"https:\/\/alvaromusic.com\/index.php?rest_route=\/wp\/v2\/pages\/2"}],"collection":[{"href":"https:\/\/alvaromusic.com\/index.php?rest_route=\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/alvaromusic.com\/index.php?rest_route=\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/alvaromusic.com\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/alvaromusic.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=2"}],"version-history":[{"count":65,"href":"https:\/\/alvaromusic.com\/index.php?rest_route=\/wp\/v2\/pages\/2\/revisions"}],"predecessor-version":[{"id":379,"href":"https:\/\/alvaromusic.com\/index.php?rest_route=\/wp\/v2\/pages\/2\/revisions\/379"}],"wp:attachment":[{"href":"https:\/\/alvaromusic.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=2"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}