/**
 * @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-teaser',
	templateUrl: './tpl.teaser.pug',
	styleUrls: ['./sty.teaser.scss']
})
export class BlockTeaserComponent implements OnInit {

	// Vars
	@Input('block') block
	server: string

	constructor(
		private _helper: HelperService
	) { }


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


	// Functions

}