26 lines
921 B
TypeScript
26 lines
921 B
TypeScript
export const hosting: string = "http://tkf.com.tm/app";
|
|
export const sliderDataUrl: string = hosting + "/api/v1/sliders";
|
|
export const partners: string = hosting + "/api/v1/partners";
|
|
export const postsMain: string =
|
|
hosting + "/api/v1/posts?locale=ru&per_page=6&sort_order=asc";
|
|
|
|
export const postsAll: string =
|
|
hosting + "/api/v1/posts?locale=ru&per_page=15&sort_order=asc";
|
|
|
|
export const postsAside: string =
|
|
hosting + "/api/v1/posts?locale=ru&per_page=4&sort_order=asc";
|
|
|
|
export const post: string = hosting + "/api/v1/posts"; // /id ? locale
|
|
|
|
export const videos: string = hosting + "/api/v1/videos";
|
|
|
|
export const structure: string = hosting + "/api/v1/structure";
|
|
|
|
export const contacts: string = hosting + "/api/v1/contact-info";
|
|
|
|
export const about: string = hosting + "/api/v1/about";
|
|
|
|
export const players: string = hosting + "/api/v1/players";
|
|
|
|
export const events: string = hosting + "/api/v1/events";
|