/**
 * @since Fri Feb 09 2018
 * @author Charles Gouldmann - Klean
 */

import { Component, Input, OnInit } from '@angular/core'

import { BlockService }		from '../../services/svc.block'
import { HelperService }	from '@k-services/svc.helper'

@Component({
	selector: 'block-image-grid',
	templateUrl: './tpl.image-grid.pug',
	styleUrls: ['./sty.image-grid.scss']
})
export class BlockImageGridComponent implements OnInit {

	// Vars
	@Input('block') block
	server: string
	constructor(
		private _helper: HelperService
	) { }


	// Lifecycle hooks
	ngOnInit() { 
		this.server = this._helper.server
	}


	// Functions

}