presidential-innovation-fellows/code-gov-web

View on GitHub
src/app/components/policy-guide/docs/capacity/capacity-introduction/capacity-introduction.component.ts

Summary

Maintainability
A
2 hrs
Test Coverage
import { Component } from '@angular/core';
import { SeoService } from '../../../../../services/seo';

@Component({
  selector: 'introduction',
  template: require('./capacity-introduction.template.html')
})

export class CapacityIntroductionComponent {
  constructor(private seoService: SeoService) {
    seoService.setTitle('Introduction - Building your Agency\'s Open Source Practice', true);
    seoService.setMetaDescription(
      'Recommendations for an interdisciplinary approach to Open Source for Federal agencies.'
    );
    seoService.setMetaRobots('Index, Follow');
  }
}