 


	<div style="clear:left;"></div>

	<script>jQuery(document).ready(function($){

		function reorderImages(){

			//reorder images

			$('#droppable .image-entry').each(function(i){

				//rewrite attr

				var num = i+1;

				$(this).find('.get-image').attr('data-num',num);

				$(this).find('.del-image').attr('data-num',num);

				$(this).find('div.img-preview').attr('data-num',num);

				var $input = $(this).find('input');

				$input.attr('name','image'+num).attr('id','image'+num).attr('data-num',num);

			});

		}



		if('draggable' in document.createElement('span')) {

			function handleDragStart(e) {

			  this.style.opacity = '0.4';  // this / e.target is the source node.

			}



			function handleDragOver(e) {

			  if (e.preventDefault) {

			    e.preventDefault(); // Necessary. Allows us to drop.

			  }

			  e.dataTransfer.dropEffect = 'move';  // See the section on the DataTransfer object.

			  return false;

			}



			function handleDragEnter(e) {

			  // this / e.target is the current hover target.

			  this.classList.add('over');

			}



			function handleDragLeave(e) {

				var rect = this.getBoundingClientRect();

	           // Check the mouseEvent coordinates are outside of the rectangle

	           if(e.x > rect.left + rect.width || e.x < rect.left

	           || e.y > rect.top + rect.height || e.y < rect.top) {

	               this.classList.remove('over');  // this / e.target is previous target element.

	           }

			}



			function handleDrop(e) {

			  // this / e.target is current target element.

			  if (e.stopPropagation) {

			    e.stopPropagation(); // stops the browser from redirecting.

			  }

			  // Don't do anything if dropping the same column we're dragging.

			  if (dragSrcEl != this) {

			    // Set the source column's HTML to the HTML of the column we dropped on.

			    dragSrcEl.innerHTML = this.innerHTML;

			    this.innerHTML = e.dataTransfer.getData('text/html');

			    reorderImages();

			  }

			  // See the section on the DataTransfer object.

			  return false;

			}



			function handleDragEnd(e) {

			  // this/e.target is the source node.

			  this.style.opacity = '1';

			  [].forEach.call(cols, function (col) {

			    col.classList.remove('over');

			  });

			}



			var dragSrcEl = null;



			function handleDragStart(e) {

			  // Target (this) element is the source node.

			  this.style.opacity = '0.4';

			  dragSrcEl = this;

			  e.dataTransfer.effectAllowed = 'move';

			  e.dataTransfer.setData('text/html', this.innerHTML);

			}



			var cols = document.querySelectorAll('#droppable .image-entry');

			[].forEach.call(cols, function(col) {

			  col.addEventListener('dragstart', handleDragStart, false);

			  col.addEventListener('dragenter', handleDragEnter, false);

			  col.addEventListener('dragover', handleDragOver, false);

			  col.addEventListener('dragleave', handleDragLeave, false);

			  col.addEventListener('drop', handleDrop, false);

	  		  col.addEventListener('dragend', handleDragEnd, false);

			});

		}else{

			  $( "#droppable" ).sortable({

			  	opacity: 0.4, 

			    cursor: 'move',

			    update: function(event, ui) {

			    	reorderImages()

			    }

			  });

		}

	});</script>

	<style type="text/css">

	[draggable] {

	  -moz-user-select: none;

	  -khtml-user-select: none;

	  -webkit-user-select: none;

	  user-select: none;

	}

	.img-preview{

		position:relative;

		display:block;

		width:100px;

		height:100px;

		background:#efefef;

		border:1px solid #FFF;

	}

	.img-preview img{

		position:absolute;

		top:0;

		left:0;

	}

	.image-entry{

		float:left;

		margin:0 10px 10px 0;

		border:2px solid #ccc;

		padding:10px;

		background:#FFF;

	}

	.image-entry:last-child{margin-right:0;}

	.image-entry.over{

		border: 2px dashed #000;

	}

	.get-image,.del-image{

		margin-top:10px !important;

		display:block !important;

	}

	</style>



}

<?xml version="1.0" encoding="UTF-8"?><?xml-stylesheet type="text/xsl" href="//dev2018.conceptincarnate.com/wp-content/plugins/wordpress-seo/css/main-sitemap.xsl"?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
	<sitemap>
		<loc>http://dev2018.conceptincarnate.com/post-sitemap.xml</loc>
		<lastmod>2017-12-29T02:10:10+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>http://dev2018.conceptincarnate.com/page-sitemap.xml</loc>
		<lastmod>2026-07-20T05:28:19+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>http://dev2018.conceptincarnate.com/attachment-sitemap.xml</loc>
		<lastmod>2026-07-18T22:23:35+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>http://dev2018.conceptincarnate.com/project-sitemap.xml</loc>
		<lastmod>2026-08-07T02:13:13+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>http://dev2018.conceptincarnate.com/category-sitemap.xml</loc>
		<lastmod>2017-12-29T02:10:10+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>http://dev2018.conceptincarnate.com/post_tag-sitemap.xml</loc>
		<lastmod>2017-12-29T02:10:10+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>http://dev2018.conceptincarnate.com/tagportifolio-sitemap.xml</loc>
		<lastmod>2018-03-20T00:11:34+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>http://dev2018.conceptincarnate.com/author-sitemap.xml</loc>
		<lastmod>2026-07-18T21:15:47+00:00</lastmod>
	</sitemap>
</sitemapindex>
<!-- XML Sitemap generated by Yoast SEO -->