Globalization of contemporary Art – SUBJECT OF PAPER• Slide One – title of exhibition, your name, your area of interest (optional), specific class information.• Slide Two – list of slides by title and artist’s name.• Slide Three – Juror statement. This is an original statement explaining your intent. It should be at leastthree sentences long and explain how your show is arranged. (See example in PowerPoint sample)• Slides Four through Eight – Selected artworks for your exhibition and associated metadata.EACH ARTWORK PAGE MUST INCLUDE:1. Title, artist, date of creation, media, location/country of origin IN LIST FORMAT. Please don’t make meread through the summary and try to pick out this information. It should be listed in the same order oneach slide and easily identifiable.2. Where work can be found (not just where you found the info/image)
Last Completed Projects
topic title | academic level | Writer | delivered |
---|
jQuery(document).ready(function($) { var currentPage = 1; // Initialize current page
function reloadLatestPosts() { // Perform AJAX request $.ajax({ url: lpr_ajax.ajax_url, type: 'post', data: { action: 'lpr_get_latest_posts', paged: currentPage // Send current page number to server }, success: function(response) { // Clear existing content of the container $('#lpr-posts-container').empty();
// Append new posts and fade in $('#lpr-posts-container').append(response).hide().fadeIn('slow');
// Increment current page for next pagination currentPage++; }, error: function(xhr, status, error) { console.error('AJAX request error:', error); } }); }
// Initially load latest posts reloadLatestPosts();
// Example of subsequent reloads setInterval(function() { reloadLatestPosts(); }, 7000); // Reload every 7 seconds });